mirror of
https://github.com/php/php-src.git
synced 2026-03-30 12:13:02 +02:00
14 lines
246 B
PHP
14 lines
246 B
PHP
--TEST--
|
|
Bug #71897 (ASCII 0x7F Delete control character permitted in identifiers)
|
|
--FILE--
|
|
<?php
|
|
|
|
eval("
|
|
\$a\x7Fb = 3;
|
|
var_dump(\$a\x7Fb);
|
|
");
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected '%s' (T_BAD_CHARACTER) in %s on line %d
|