31 lines
777 B
PHP
31 lines
777 B
PHP
--TEST--
|
|
Test iconv_strrpos() function : error conditions - pass an unknown encoding
|
|
--SKIPIF--
|
|
<?php
|
|
extension_loaded('iconv') or die('skip');
|
|
function_exists('iconv_strrpos') or die("skip iconv_strrpos() is not available in this build");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
/*
|
|
* Pass iconv_strrpos() an encoding that doesn't exist
|
|
*/
|
|
|
|
echo "*** Testing iconv_strrpos() : error conditions ***\n";
|
|
|
|
$haystack = 'This is an English string. 0123456789.';
|
|
$needle = '123';
|
|
$offset = 5;
|
|
$encoding = 'unknown-encoding';
|
|
|
|
var_dump(iconv_strrpos($haystack, $needle , $encoding));
|
|
|
|
echo "Done";
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing iconv_strrpos() : error conditions ***
|
|
|
|
Warning: iconv_strrpos(): Wrong encoding, conversion from "unknown-encoding" to "UCS-4LE" is not allowed in %s on line %d
|
|
bool(false)
|
|
Done
|