You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
165 B

--TEST--
Bug #60350 No string escape code for ESC (ascii 27), normally \e
--FILE--
<?php
$str = "\e";
if (ord($str) == 27) {
echo "Works";
}
?>
--EXPECT--
Works