mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
32 lines
413 B
PHP
32 lines
413 B
PHP
--TEST--
|
|
mb_ereg_search_pos() # a test for the basic function of mb_ereg_search_pos
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('mbstring')) die('skip mbstring not enabled');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$test_str = 'Iñtërnâtiônàlizætiøn';
|
|
|
|
if(mb_ereg_search_init($test_str))
|
|
{
|
|
$val=mb_ereg_search_pos("nâtiôn");
|
|
|
|
var_dump($val);
|
|
|
|
}
|
|
else{
|
|
var_dump("false");
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
array(2) {
|
|
[0]=>
|
|
int(5)
|
|
[1]=>
|
|
int(6)
|
|
}
|
|
|
|
|