mirror of
https://github.com/php/php-src.git
synced 2024-12-20 15:30:38 +08:00
12 lines
165 B
Plaintext
12 lines
165 B
Plaintext
|
--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
|