mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
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.
28 lines
712 B
PHP
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
|