summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/errors03.phpt
blob: 1f519cb599958c3c849cfaa39e6d809c2b98e9c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Test preg_match() function : error conditions - Internal error
--FILE--
<?php

var_dump(preg_match('/', 'Hello world'));
var_dump(preg_last_error_msg() === 'Internal error');

?>
--EXPECTF--
Warning: preg_match(): No ending delimiter '/' found in %s on line %d
bool(false)
bool(true)