Blogger Information
Blog 45
fans 2
comment 1
visits 26354
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
2018年5月9号use导入空间\别名
哈的博客
Original
576 people have browsed it

总结:

使用别名导入命名空间

 use 关键字的使用

. 声明一个命名空间one

如果当前类也有一个同名的Demo 为导入的类取一个别名

在当前空间访问: one\two\three空间中类

实例

<?php
//命名空间的命名
// namespace one
// {
// class Demo{public $name='json';}
// const  SITE = 'php';
// function add($a,$b){return $a+$b;}
// //限定名称;相对于相对路径
// echo (new two\Demo)->name.'<br>';
// }


namespace one\two
{
class Demo{public $name='jsonss';}
const  SITE = 'ajax';
function add($a,$b){return $a+$b;}
//查看当前空间
// echo __NAMESPACE__.'<br>';
echo (new Demo)->name.'<br>';
//完全限定名称
echo (new \one\Demo)->name.'<br>';
}


<?php
//命名空间的命名
// include './demo6.php';
namespace one
{
	use one\two\Demo as NewDemo;
class Demo{public $name='json';}
const  SITE = 'php';
function add($a,$b){return $a+$b;}
//限定名称;相对于相对路径
echo (new NewDemo)->name.'<br>';
}

运行实例 »

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

必须要添加很长的空间前缀

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