1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 21:11:02 +02:00
Files
archived-php-src/ext/mbstring/tests/mb_stripos_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

27 lines
632 B
PHP

--TEST--
Test mb_stripos() function : error conditions - Pass unknown encoding
--EXTENSIONS--
mbstring
--FILE--
<?php
/*
* Pass an unknown encoding to mb_stripos() to test behaviour
*/
echo "*** Testing mb_stripos() : error conditions ***\n";
$haystack = 'Hello, world';
$needle = 'world';
$offset = 2;
$encoding = 'unknown-encoding';
try {
var_dump( mb_stripos($haystack, $needle, $offset, $encoding) );
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
*** Testing mb_stripos() : error conditions ***
mb_stripos(): Argument #4 ($encoding) must be a valid encoding, "unknown-encoding" given