summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug26927.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/tests/bug26927.phpt')
-rw-r--r--ext/pcre/tests/bug26927.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pcre/tests/bug26927.phpt b/ext/pcre/tests/bug26927.phpt
index 200a534b76..8cc6280afd 100644
--- a/ext/pcre/tests/bug26927.phpt
+++ b/ext/pcre/tests/bug26927.phpt
@@ -2,9 +2,9 @@
Bug #26927 (preg_quote() does not escape \0)
--FILE--
<?php
- $str = "a\000b";
- $str_quoted = preg_quote($str);
- var_dump(preg_match("!{$str_quoted}!", $str), $str_quoted);
+ $str = "a\000b";
+ $str_quoted = preg_quote($str);
+ var_dump(preg_match("!{$str_quoted}!", $str), $str_quoted);
?>
--EXPECT--
int(1)