1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/mbstring/tests/mb_substr_count_error2.phpt
Jorg Adam Sowa 1e02099e6a ext/mbstring: Use internal_encoding INI setting instead of mb_internal_encoding() in tests (#19663)
Moves the usage of `mb_internal_encoding()` to INI section for the tests not testing the encoding/function itself, but the other mbstring/iconv functions.
2025-09-03 11:34:12 +01:00

28 lines
712 B
PHP

--TEST--
Test mb_substr_count() function : error conditions - pass unknown encoding
--EXTENSIONS--
mbstring
--FILE--
<?php
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