Blogger Information
Blog 55
fans 0
comment 0
visits 50462
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP-使用use导入类、别名-0906
Bean_sproul
Original
1503 people have browsed it

php1.php文件


实例

<?php
namespace one;
    class Lei{
        const APP ='我是one中常量';
        public static function a()
        {
            return '当前的方法是:'.__METHOD__.'<br>使用的命名空间是:'.__NAMESPACE__.'<hr>';
        }
        public $b='我是one中变量';
    }

//    echo Lei::APP.'<br>';
//    echo Lei::a();

运行实例 »

点击 "运行实例" 按钮查看在线实例


php2.php文件


实例

<?php
namespace two;
require 'php1.php';
use one\Lei as Hu;//使用use操作符导入、有相同的类并使用别名
use a\b\c\d\e\f;//使用use操作符导入、命名空间特别长使用别名

    class Lei{
        public static function a()
        {
            return '当前的方法是:'.__METHOD__.'<br>使用的命名空间是:'.__NAMESPACE__.'<hr>';
        }
    }

    echo Lei::a();
    echo Hu::APP.'<br>';
    echo Hu::a();

运行实例 »

点击 "运行实例" 按钮查看在线实例

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post