命名空間的概念
命名空間是一種封裝事物的方法。
- 命名空間用
namespace
關(guān)鍵字來(lái)聲明估蹄。
class Person {}
$stone = new Person;
echo '<pre>';
print_r($stone);
echo '</pre>';
/*
Person Object
(
)
*/
namespace name\space;
class Person {}
$stone = new Person;
echo '<pre>';
print_r($stone);
echo '</pre>';
$tom = new \name\space\Person;
echo '<pre>';
print_r($tom);
echo '</pre>';
function say_hello() {}
const COUNT = 1;
var_dump(COUNT);
echo '<br/>';
var_dump(\name\space\COUNT);
echo '<br/>';
var_dump(namespace\COUNT);
echo '<br/>';
var_dump(__NAMESPACE__);
echo '<br/>';
var_dump(__NAMESPACE__.'\COUNT');
echo '<br/>';
echo constant(__NAMESPACE__.'\COUNT');
/*
name\space\Person Object
(
)
name\space\Person Object
(
)
int(1)
int(1)
int(1)
string(10) "name\space"
string(16) "name\space\COUNT"
1
*/
- 以
PHP
或php
為名或開(kāi)頭的命名空間被保留作為語(yǔ)言內(nèi)核使用塑煎。 - 只有類,接口臭蚁,函數(shù)和常量受命名空間的影響最铁。
- 除了使用
declare
關(guān)鍵字以declare(encoding='...')
方式指定腳本編碼方式之外任何代碼都不能出現(xiàn)在命名空間聲明之前。
<html>
<?php
namespace MyNamespace;
// Fatal error: Namespace declaration statement has to be the very first statement in the script in
- 同一命名空間可以被定義在多個(gè)文件中垮兑。
-
php
允許創(chuàng)建形如Multi\Level\Namespace
這樣的多層命名空間冷尉。 - 同一個(gè)文件中可以包含多個(gè)命名空間,但是不提倡這么做系枪,這種情形主要用于將多個(gè)php腳本合并到一個(gè)文件中雀哨。
namespace MyNamespace;
const COUNT = 1;
var_dump(COUNT);
echo '<br/>';
namespace YourNamespace;
CONST COUNT = 2;
var_dump(COUNT);
/*
int(1)
int(2)
*/
// 以上屬于是單個(gè)文件多個(gè)命名空間的簡(jiǎn)單組合語(yǔ)法形式
namespace MyNamespace {
const COUNT = 1;
var_dump(COUNT);
echo '<br/>';
}
namespace YourNamespace {
CONST COUNT = 2;
var_dump(COUNT);
}
/*
int(1)
int(2)
*/
// 以上屬于是單個(gè)文件多個(gè)命名空間的大括號(hào)語(yǔ)法形式,比簡(jiǎn)單組合語(yǔ)法形式更值得推薦
- 將命名空間中的代碼和全局非命名空間中的代碼組合在一起時(shí)只能使用大括號(hào)語(yǔ)法形式,全局代碼必須使用不帶名稱的
namespace
語(yǔ)句加上大括號(hào)括起來(lái)雾棺。
namespace MyProject {
function hello()
{
echo 'hello';
}
hello(); // hello
echo '<br/>';
}
namespace {
// hello(); // Fatal error: Call to undefined function hello() ini
MyProject\hello(); // hello
}
命名空間的使用
命名空間中的元素有三種使用方式
- 非限定名稱(不包含前綴的名稱):如果元素包含在命名空間中則會(huì)被解析成當(dāng)前命名空間中的元素膊夹,如果當(dāng)前命名空間中沒(méi)有定義該元素則該元素會(huì)被認(rèn)為是全局的,如果使用元素的代碼不在任何命名空間中則會(huì)被認(rèn)為是全局的捌浩。
- 限定名稱(包含前綴的名稱):如果在命名空間中使用元素放刨,則當(dāng)前的命名空間會(huì)被加在限定名稱前作為最終要使用的元素,如果在全局作用域使用元素尸饺,則元素按照指定的限定名稱使用进统。
- 完全限定名稱(包含了全局前綴操作符的名稱):這種情況下元素就按照指定的名稱進(jìn)行訪問(wèn)。
// Person.php
namespace Project\App\Model;
class Person
{
public static function hello()
{
echo 'hello in Project\App\Model';
echo '<br/>';
}
}
namespace Project\App;
require_once 'Person.php';
class Person
{
public static function hello()
{
echo 'hello in Project\App';
echo '<br/>';
}
}
Person::hello(); // hello in Project\App
Model\Person::hello(); // hello in Project\App\Model
\Project\App\Person::hello(); // hello in Project\App
\Project\App\Model\Person::hello(); // hello in Project\App\Model
echo \strlen('hello'); // 5
echo '<br/>';
echo \PHP_INT_MAX; // 9223372036854775807
echo '<br/>';
echo strlen('hello'); // 5
echo '<br/>';
echo PHP_INT_MAX; // 9223372036854775807
echo '<br/>';
- 在命名空間中使用動(dòng)態(tài)類名稱侵佃、常量名稱或函數(shù)名稱時(shí)不能使用非限定名稱。
// Person.php
namespace Project\App\Model;
const COUNT = 'this is a constant in Project\App\Model';
function test()
{
echo 'this is a function in Project\App\Model';
echo '<br/>';
}
class Person
{
public static function hello()
{
echo 'hello in Project\App\Model';
echo '<br/>';
}
}
namespace Project\App;
require_once 'Person.php';
const COUNT = 'this is a constant in Project\App';
function test()
{
echo 'this is a function in Project\App';
echo '<br/>';
}
class Person
{
public static function hello()
{
echo 'hello in Project\App';
echo '<br/>';
}
}
echo COUNT; // this is a constant in Project\App
echo '<br/>';
$count = 'COUNT';
echo constant($count); // Warning: constant(): Couldn't find constant COUNT in
echo '<br/>';
$count = 'Project\App\COUNT';
echo constant($count); // this is a constant in Project\App
echo '<br/>';
test(); // this is a function in Project\App
$function_name = 'test';
// $function_name(); // Fatal error: Call to undefined function test() in
$function_name = 'Project\App\Model\test';
$function_name(); // this is a function in Project\App\Model
Person::hello(); // hello in Project\App
$class_name = 'Person';
//$class_name::hello(); // Fatal error: Class 'Person' not found in
$class_name = '\Project\App\Person';
$class_name::hello(); // hello in Project\App
- 通過(guò)預(yù)定義常量
__NAMESPACE__
可以獲取當(dāng)前命名空間的名稱迈螟。
var_dump(__NAMESPACE__); // string(0) ""
namespace App\Http\Controller;
echo __NAMESPACE__; // App\Http\Controller
- 通過(guò)類似于類的
self
操作符的關(guān)鍵字namespace
可以顯式地訪問(wèn)當(dāng)前命名空間或者子命名空間中的元素褥民。
// Person.php
namespace Project\App\Model;
const COUNT = 'this is a constant in Project\App\Model';
function test()
{
echo 'this is a function in Project\App\Model';
echo '<br/>';
}
class Person
{
public static function hello()
{
echo 'hello in Project\App\Model';
echo '<br/>';
}
}
namespace Project\App;
require_once 'Person.php';
const COUNT = 1;
namespace\Model\test(); // this is a function in Project\App\Model
echo namespace\COUNT; // 1
- 命名空間允許通過(guò)別名引用或?qū)胪獠康耐耆薅Q消返。
// Person.php
namespace Project\App\Model;
const COUNT = 'this is a constant in Project\App\Model';
function test()
{
echo 'this is a function in Project\App\Model';
echo '<br/>';
}
class Person
{
public static function hello()
{
echo 'hello in Project\App\Model';
echo '<br/>';
}
}
class Programmer extends Person
{
public static function code()
{
echo 'I am coding...';
echo '<br/>';
}
}
namespace Project\App;
ini_set('display_errors', 'on');
error_reporting(E_ALL);
require_once 'Person.php';
use Project\App\Model\Programmer as Prog;
Prog::code(); // I am coding...
use Project\App\Model\Person; // 詞句與use Project\App\Model\Person as Person等價(jià);
Person::hello(); // hello in Project\App\Model
use function Project\App\Model\test; // php5.6+
test(); // this is a function in Project\App\Model
use const Project\App\Model\COUNT; // php5.6+
echo COUNT; // this is a constant in Project\App\Model
echo '<br/>';
use Project\App as App;
App\Model\test(); // this is a function in Project\App\Model
- 對(duì)命名空間中的名稱來(lái)說(shuō)耘拇,前導(dǎo)的反斜杠是不必要的也是不推薦的惫叛,因?yàn)閷?dǎo)入名稱是完全限定的妻熊,不會(huì)根據(jù)當(dāng)前的命名空間作相對(duì)解析扔役。
-
php
支持在一行中使用多個(gè)use
。
// Person.php
namespace Project\App\Model;
const COUNT = 'this is a constant in Project\App\Model';
function test()
{
echo 'this is a function in Project\App\Model';
echo '<br/>';
}
class Person
{
public static function hello()
{
echo 'hello in Project\App\Model';
echo '<br/>';
}
}
class Programmer extends Person
{
public static function code()
{
echo 'I am coding...';
echo '<br/>';
}
}
namespace Project\App;
ini_set('display_errors', 'on');
error_reporting(E_ALL);
require_once 'Person.php';
use Project\App\Model\Person, Project\App\Model\Programmer as Prog;
Person::hello(); // hello in Project\App\Model
Prog::code(); // I am coding...
- 導(dǎo)入操作是在編譯時(shí)執(zhí)行的,而動(dòng)態(tài)的類名稱损敷、函數(shù)名稱和常量名稱不是的路星。
// Person.php
namespace Project\App\Model;
const COUNT = 'this is a constant in Project\App\Model';
function test()
{
echo 'this is a function in Project\App\Model';
echo '<br/>';
}
class Person
{
public static function hello()
{
echo 'hello in Project\App\Model';
echo '<br/>';
}
}
class Programmer extends Person
{
public static function code()
{
echo 'I am coding...';
echo '<br/>';
}
}
namespace Project\App;
ini_set('display_errors', 'on');
error_reporting(E_ALL);
require_once 'Person.php';
use Project\App\Model\Person;
Person::hello(); // hello in Project\App\Model
$class_name = 'Person';
$class_name::hello(); // Fatal error: Class 'Person' not found in
- 導(dǎo)入操作只影響非限定和限定名稱。完全限定名稱是確定的迁客,不受導(dǎo)入影響掷漱。
本文首發(fā)于公眾號(hào):programmer_cc海雪,轉(zhuǎn)載請(qǐng)注明出處舱殿。