blob: e3454f72ea89afa0cf154365950df3e3d069b2bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--TEST--
Test mb_strrichr() function : error conditions
--SKIPIF--
<?php
extension_loaded('mbstring') or die('skip');
function_exists('mb_strrichr') or die("skip mb_strrichr() is not available in this build");
?>
--FILE--
<?php
echo "*** Testing mb_strrichr() : error conditions ***\n";
echo "\n-- Testing mb_strrichr() with unknown encoding --\n";
$haystack = 'Hello, world';
$needle = 'world';
$encoding = 'unknown-encoding';
$part = true;
try {
var_dump( mb_strrichr($haystack, $needle, $part, $encoding) );
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
*** Testing mb_strrichr() : error conditions ***
-- Testing mb_strrichr() with unknown encoding --
mb_strrichr(): Argument #4 ($encoding) must be a valid encoding, "unknown-encoding" given
|