mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
--TEST--
|
|
Test mb_stripos() function : error conditions - Pass incorrect number of args
|
|
--SKIPIF--
|
|
<?php
|
|
extension_loaded('mbstring') or die('skip');
|
|
function_exists('mb_stripos') or die("skip mb_stripos() is not available in this build");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : int mb_stripos(string haystack, string needle [, int offset [, string encoding]])
|
|
* Description: Finds position of first occurrence of a string within another, case insensitive
|
|
* Source code: ext/mbstring/mbstring.c
|
|
* Alias to functions:
|
|
*/
|
|
|
|
/*
|
|
* Test how mb_stripos behaves when passed an incorrect number of arguments
|
|
*/
|
|
|
|
echo "*** Testing mb_stripos() : error conditions ***\n";
|
|
|
|
|
|
//Test mb_stripos with one more than the expected number of arguments
|
|
echo "\n-- Testing mb_stripos() function with more than expected no. of arguments --\n";
|
|
$haystack = b'string_val';
|
|
$needle = b'string_val';
|
|
$offset = 10;
|
|
$encoding = 'string_val';
|
|
$extra_arg = 10;
|
|
var_dump( mb_stripos($haystack, $needle, $offset, $encoding, $extra_arg) );
|
|
|
|
// Testing mb_stripos with one less than the expected number of arguments
|
|
echo "\n-- Testing mb_stripos() function with less than expected no. of arguments --\n";
|
|
$haystack = b'string_val';
|
|
var_dump( mb_stripos($haystack) );
|
|
|
|
echo "Done";
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing mb_stripos() : error conditions ***
|
|
|
|
-- Testing mb_stripos() function with more than expected no. of arguments --
|
|
|
|
Warning: mb_stripos() expects at most 4 parameters, 5 given in %s on line %d
|
|
NULL
|
|
|
|
-- Testing mb_stripos() function with less than expected no. of arguments --
|
|
|
|
Warning: mb_stripos() expects at least 2 parameters, 1 given in %s on line %d
|
|
NULL
|
|
Done
|