summaryrefslogtreecommitdiff
path: root/Zend/tests/bug60350.phpt
blob: 3facd54ac2295b42f819cdc5ae25fee96b2c1508 (plain)
1
2
3
4
5
6
7
8
9
10
11
--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