\ (反斜杠) 在 PHP (5.3+) 中有什么作用?
2022-08-30 06:16:51
在 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);
}
}