1
0
mirror of https://github.com/php/php-src.git synced 2026-04-04 22:52:40 +02:00
Files
archived-php-src/ext/mbstring/tests/mb_substr_count_error2.phpt
Nikita Popov a06d015e61 Remove unnecessary mbstring skipifs
These functions are always available (if the extension is available
at all).
2021-06-14 15:27:28 +02:00

31 lines
799 B
PHP

--TEST--
Test mb_substr_count() function : error conditions - pass unknown encoding
--EXTENSIONS--
mbstring
--FILE--
<?php
/*
* Test behaviour of mb_substr_count() function when passed an unknown encoding
*/
echo "*** Testing mb_substr_count() : error conditions ***\n";
$haystack = 'Hello, World!';
$needle = 'Hello';
$encoding = 'unknown-encoding';
echo "\n-- Testing mb_substr_count() function with an unknown encoding --\n";
try {
var_dump(mb_substr_count($haystack, $needle, $encoding));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
*** Testing mb_substr_count() : error conditions ***
-- Testing mb_substr_count() function with an unknown encoding --
mb_substr_count(): Argument #3 ($encoding) must be a valid encoding, "unknown-encoding" given