PHP有没有USE这个关键词解决方案

WBOY
发布: 2016-06-13 10:19:12
原创
810 人浏览过

PHP有没有USE这个关键词
我看的一些PHP的资料好像都没有USE。但是刚才看一个框架时发现里面用到了USE。

------解决方案--------------------
我猜 没有吧
------解决方案--------------------
这个不明白啊
------解决方案--------------------
namespace foo;
use My\Full\Classname as Another;

// this is the same as use My\Full\NSname as NSname
use My\Full\NSname;

// importing a global class
use ArrayObject;

$obj = new namespace\Another; // instantiates object of class foo\Another
$obj = new Another; // instantiates object of class My\Full\Classname
NSname\subns\func(); // calls function My\Full\NSname\subns\func
$a = new ArrayObject(array(1)); // instantiates object of class ArrayObject
// without the "use ArrayObject" we would instantiate an object of class foo\ArrayObject
?>
好像是给一个类定义别名:如下

use class3 as Another;
use class3 as Another1;
use class3 as Another2;

$obj = new Another; //
$obj = new Another1; // 
$obj = new Another2; //

------解决方案--------------------
php 5.3+

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板