加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

PHP中的use关键字概述

发布时间:2020-05-28 11:16:32 所属栏目:PHP 来源:互联网
导读:这篇文章主要介绍了PHP中的use关键字,需要的朋友可以参考下

很多开源系统如osCommerce框架中,都会在其源码中找到use这个关键字,如osCommerce框架中就在index.php文件中出现了这段源码:

其实,php的use关键字是自php5.3以上版本引入的。它的作用是给一个外部引用起别名。这是命名空间的一个重要特性,它同基于unix的文件系统的为文件或目录创建连接标志相类似。

PHP命名空间支持三种别名方式(或者说引用):

1、为一个类取别名

2、为一个接口取别名

3、为一个命名空间取别名

这三种方式都是用 use 关键字来完成。下面是三种别名的分别举例: //Example #1 importing/aliasing with the use operator

//thisisthesameasuseMyFullNSnameasNSname
useMyFullNSname;

//importingaglobalclass
useArrayObject;

$obj=newnamespaceAnother;//instantiatesobjectofclassfooAnother
$obj=newAnother;//instantiatesobjectofclassMyFullClassname
NSnamesubnsfunc();//callsfunctionMyFullNSnamesubnsfunc
$a=newArrayObject(array(1));//instantiatesobjectofclassArrayObject
//withoutthe"useArrayObject"wewouldinstantiateanobjectofclassfooArrayObject
?>

注意的一点是,

PHP也可以在同一行上申明多个,等同于上面的写法

$obj=newAnother;//instantiatesobjectofclassMyFullClassname
NSnamesubnsfunc();//callsfunctionMyFullNSnamesubnsfunc
?>

还有值得一说的是, $obj=newAnother;//instantiatesobjectofclassMyFullClassname
$a = 'Another';
$obj = New $a; // instantiates object of class Another
?>

这里由于给变量$a 赋值了 'Another',编译的时候,就将$a 定位到 Classname 了。

更详细的用法读者可以查阅php手册或关注本站后续相关文章。

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读