mirror of
https://github.com/php/php-src.git
synced 2025-01-22 19:54:13 +08:00
19 lines
345 B
PHP
19 lines
345 B
PHP
--TEST--
|
|
mb_ereg() compat test 1
|
|
--SKIPIF--
|
|
extension_loaded('mbstring') or die('skip');
|
|
--FILE--
|
|
<?php
|
|
/* (counterpart: ext/standard/tests/reg/004.phpt) */
|
|
$a="This is a nice and simple string";
|
|
if (mb_ereg(".*nice and simple.*",$a)) {
|
|
echo "ok\n";
|
|
}
|
|
if (!mb_ereg(".*doesn't exist.*",$a)) {
|
|
echo "ok\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
ok
|
|
ok
|