PHP有没有USE这个关键词解决方案
程序员文章站
2024-01-29 16:51:10
...
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的资料好像都没有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+
相关文章
相关视频
上一篇: C#基础入门之算法-交换的代码示例
下一篇: 在项目中寻找代码的坏命名_PHP
推荐阅读
-
PHP有没有USE这个关键词解决方案
-
请高手解决php中小弟关于$这个符号的疑问!解决方案
-
php中没有进程锁,有没有什么解决方案?
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享_PHP教程
-
php 程序中各种if 判断导致程序凌乱不堪,有没有什么好的解决方案?
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案_PHP
-
请高手解决php中小弟关于$这个符号的疑问!解决方案
-
php CLI方式运行的收集数据脚本过多导致PHP进程过多,有没有好的解决方案来替换?
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案_PHP
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享