¿Qué hace un \
en PHP?¿Qué hace una (barra invertida) en PHP (5.3+)?
Por ejemplo, https://github.com/foxbunny/CSRF4PHP/blob/60d9172b7f0cd93346cac9065fb17182854ebf1c/CsrfToken.php#L80-L87 tiene \FALSE
, \session_id
, y \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);
}
}
Hace que el código sea menos legible. Pero para [referencia: ¿Qué significa este símbolo en PHP] (http://stackoverflow.com/questions/3737139/reference-what-does-this-symbol-mean-in-php) – mario
@mario tema de stackoverflow muy bueno. Gracias por el enlace :) – Alfred
Supongo que esta pregunta debería cerrarse, pero no puedo cerrar los temas yo mismo. – Alfred