欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP中的use关键字概述

程序员文章站 2022-12-28 11:53:01
很多开源系统如oscommerce框架中,都会在其源码中找到use这个关键字,如oscommerce框架中就在index.php文件中出现了这段源码: use o...

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

use oscommerce\om\core\autoloader;
use oscommerce\om\core\oscom;

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

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

1、为一个类取别名

2、为一个接口取别名

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

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

<?php
namespacefoo;
usemy\full\classnameasanother;

//thisisthesameasusemy\full\nsnameasnsname
usemy\full\nsname;

//importingaglobalclass
usearrayobject;

$obj=newnamespace\another;//instantiatesobjectofclassfoo\another
$obj=newanother;//instantiatesobjectofclassmy\full\classname
nsname\subns\func();//callsfunctionmy\full\nsname\subns\func
$a=newarrayobject(array(1));//instantiatesobjectofclassarrayobject
//withoutthe"usearrayobject"wewouldinstantiateanobjectofclassfoo\arrayobject
?>

注意的一点是,对于已命名的名字,全称就包含了分隔符,比如 foo\bar,而不能用foobar,而“\foo\bar”这个头部的"\"是没必要的,也不建议这样写。引入名必须是全称,并且跟当前命名空间没有程序上的关联

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

<?php
usemy\full\classnameasanother,my\full\nsname;

$obj=newanother;//instantiatesobjectofclassmy\full\classname
nsname\subns\func();//callsfunctionmy\full\nsname\subns\func
?>

还有值得一说的是,引入是在编译时执行的,因此,别名不会影响动态类,例如:

<?php
usemy\full\classnameasanother,my\full\nsname;

$obj=newanother;//instantiatesobjectofclassmy\full\classname
$a = 'another';
$obj = new $a; // instantiates object of class another
?>

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

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