Lines Matching refs:preg_match
6 var_dump(preg_match("\0//i", ""));
7 var_dump(preg_match("/\0/i", ""));
8 var_dump(preg_match("/\0/i", "\0"));
9 var_dump(preg_match("//\0i", ""));
10 var_dump(preg_match("//i\0", ""));
11 var_dump(preg_match("/\\\0/i", ""));
12 var_dump(preg_match("/\\\0/i", "\\\0"));
14 var_dump(preg_match("\0[]i", ""));
15 var_dump(preg_match("[\0]i", ""));
16 var_dump(preg_match("[\0]i", "\0"));
17 var_dump(preg_match("[]\0i", ""));
18 var_dump(preg_match("[]i\0", ""));
19 var_dump(preg_match("[\\\0]i", ""));
20 var_dump(preg_match("[\\\0]i", "\\\0"));
22 var_dump(preg_match("/abc\0def/", "abc"));
23 var_dump(preg_match("/abc\0def/", "abc\0def"));
24 var_dump(preg_match("/abc\0def/", "abc\0fed"));
26 var_dump(preg_match("[abc\0def]", "abc"));
27 var_dump(preg_match("[abc\0def]", "abc\0def"));
28 var_dump(preg_match("[abc\0def]", "abc\0fed"));
32 Warning: preg_match(): Delimiter must not be alphanumeric, backslash, or NUL byte in %snull_bytes.p…
37 Warning: preg_match(): NUL byte is not a valid modifier in %snull_bytes.php on line 6
40 Warning: preg_match(): NUL byte is not a valid modifier in %snull_bytes.php on line 7
45 Warning: preg_match(): Delimiter must not be alphanumeric, backslash, or NUL byte in %snull_bytes.p…
50 Warning: preg_match(): NUL byte is not a valid modifier in %snull_bytes.php on line 14
53 Warning: preg_match(): NUL byte is not a valid modifier in %snull_bytes.php on line 15