php-src/ext/mbstring/tests/mb_strrchr_error2.phpt
2016-11-20 21:11:53 +01:00

36 lines
979 B
PHP

--TEST--
Test mb_strrchr() function : error conditions
--SKIPIF--
<?php
extension_loaded('mbstring') or die('skip');
function_exists('mb_strrchr') or die("skip mb_strrchr() is not available in this build");
?>
--FILE--
<?php
/* Prototype : string mb_strrchr(string haystack, string needle[, bool part[, string encoding]])
* Description: Finds the last occurrence of a character in a string within another
* Source code: ext/mbstring/mbstring.c
* Alias to functions:
*/
echo "*** Testing mb_strrchr() : error conditions ***\n";
echo "\n-- Testing mb_strrchr() with unknown encoding --\n";
$haystack = 'Hello, world';
$needle = 'world';
$encoding = 'unknown-encoding';
$part = true;
var_dump( mb_strrchr($haystack, $needle, $part, $encoding) );
?>
===DONE===
--EXPECTF--
*** Testing mb_strrchr() : error conditions ***
-- Testing mb_strrchr() with unknown encoding --
Warning: mb_strrchr(): Unknown encoding "unknown-encoding" in %s on line %d
bool(false)
===DONE===