217

PHP中的 a 有什么作用\

例如,CSRF4PHP\FALSE\session_id\Exception

public function __construct($timeout=300, $acceptGet=\FALSE){
    $this->timeout = $timeout;
    if (\session_id()) {
        $this->acceptGet = (bool) $acceptGet;
    } else {
        throw new \Exception('Could not find session id', 1);
    }
}
4

4 回答 4

308

\(反斜杠) 是 PHP 5.3 中的命名空间分隔符。

\函数开头之前的A代表Global Namespace

将它放在那里将确保调用的函数来自全局命名空间,即使当前命名空间中有同名的函数。

于 2011-01-25T04:36:24.740 回答
29

命名空间

在 PHP 5.3+ 中,反斜杠\符号用于命名空间。它是指示命名空间的开始符号,也用作子命名空间名称之间的分隔符。

请参阅有关命名空间的官方文​​档 。

操作缓存

此外,在 PHP 7.0+ 中,一些函数被OPCache替换为操作码,这使得这些特定函数运行得更快。但是,这仅在将函数放置在根命名空间中时才有效。请参阅有关此主题的讨论。所以除了命名空间之外,间接影响代码优化。\

以下本机函数受益于此效果:

"array_slice"
"assert"
"boolval"
"call_user_func"
"call_user_func_array"
"chr"
"count"
"defined"
"doubleval"
"floatval"
"func_get_args"
"func_num_args"
"get_called_class"
"get_class"
"gettype"
"in_array"
"intval"
"is_array"
"is_bool"
"is_double"
"is_float"
"is_int"
"is_integer"
"is_long"
"is_null"
"is_object"
"is_real"
"is_resource"
"is_string"
"ord"
"strlen"
"strval"
于 2018-07-19T08:49:03.417 回答
28

为了澄清潜在的混淆:

反斜杠并不意味着类继承

在下文中,Animal, Dog,Shepherd不必是类,而只是命名空间。意思是用来将名称组合在一起以避免命名冲突的东西。

$myDog = new \Animal\Dog\Shepherd\GermanShepherd();

主导\方式Animal在全局范围内声明。

于 2014-09-03T14:50:23.093 回答
10

\PHP 5.3 中用于命名空间。有关命名空间和 PHP 的更多信息,请参见http://www.php.net/manual/en/language.namespaces.rationale.php

于 2011-01-25T04:38:30.050 回答