summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug26927.phpt
blob: 8cc6280afda306eaf99475a9478c6fb080096b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
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);
?>
--EXPECT--
int(1)
string(6) "a\000b"