Als «opcode» getaggte Fragen

171
Was macht ein \ (Backslash) in PHP (5.3+)?

Was macht ein \in PHP? Zum Beispiel CSRF4PHP hat \FALSE, \session_idund \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',...

73
Wie bekomme ich Opcodes von PHP?

<?php $show_value = 123; echo 'sing_quote'.$show_value; echo "double_quote{$show_value}"; ?> Sein Opcode lautet: 1: <?php 2: $show_value = 123; 0 ASSIGN !0, 123 3: echo 'sing_quote'.$show_value; 1 CONCAT 'sing_quote', !0 =>RES[~1] 2 ECHO ~1 4: echo "double_quote{$show_value}"; 3...