Browse Source

- Added tests for bug #60350

patch by: php@mickweiss.com
pull/7/head
Felipe Pena 15 years ago
parent
commit
d2de045007
  1. 11
      Zend/tests/bug60350.phpt

11
Zend/tests/bug60350.phpt

@ -0,0 +1,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
Loading…
Cancel
Save