©
本文档使用 PHP中文网手册 发布
(PHP 5 >= 5.3.0)
在一个命名空间中,当 PHP 遇到一个非限定的类、函数或常量名称时,它使用不同的优先策略来解析该名称。类名称总是解析到当前命名空间中的名称。因此在访问系统内部或不包含在命名空间中的类名称时,必须使用完全限定名称,例如:
Example #1 在命名空间中访问全局类
<?php
namespace A \ B \ C ;
class Exception extends \ Exception {}
$a = new Exception ( 'hi' ); // $a 是类 A\B\C\Exception 的一个对象
$b = new \ Exception ( 'hi' ); // $b 是类 Exception 的一个对象
$c = new ArrayObject ; // 致命错误, 找不到 A\B\C\ArrayObject 类
?>
对于函数和常量来说,如果当前命名空间中不存在该函数或常量,PHP 会退而使用全局空间中的函数或常量。 For functions and constants, PHP will fall back to global functions or constants if a namespaced function or constant does not exist.
Example #2 命名空间中后备的全局函数/常量
<?php
namespace A \ B \ C ;
const E_ERROR = 45 ;
function strlen ( $str )
{
return \ strlen ( $str ) - 1 ;
}
echo E_ERROR , "\n" ; // 输出 "45"
echo INI_ALL , "\n" ; // 输出 "7" - 使用全局常量 INI_ALL
echo strlen ( 'hi' ), "\n" ; // 输出 "1"
if ( is_array ( 'hi' )) { // 输出 "is not array"
echo "is array\n" ;
} else {
echo "is not array\n" ;
}
?>
[#1] markus at malkusch dot de [2014-12-04 20:22:43]
You can use the fallback policy to provide mocks for built-in functions like time(). You therefore have to call those functions unqualified:
<?php
namespace foo;
function time() {
return 1234;
}
assert (1234 == time());
?>
However there's a restriction that you have to define the mock function before the first usage in the tested class method. This is documented in Bug #68541.
You can find the mock library php-mock at GitHub.