php-src/ext/standard/tests/strings/stripos_variation1.phpt
Nikita Popov b10416a652 Deprecate passing null to non-nullable arg of internal function
This deprecates passing null to non-nullable scale arguments of
internal functions, with the eventual goal of making the behavior
consistent with userland functions, where null is never accepted
for non-nullable arguments.

This change is expected to cause quite a lot of fallout. In most
cases, calling code should be adjusted to avoid passing null. In
some cases, PHP should be adjusted to make some function arguments
nullable. I have already fixed a number of functions before landing
this, but feel free to file a bug if you encounter a function that
doesn't accept null, but probably should. (The rule of thumb for
this to be applicable is that the function must have special behavior
for 0 or "", which is distinct from the natural behavior of the
parameter.)

RFC: https://wiki.php.net/rfc/deprecate_null_to_scalar_internal_arg

Closes GH-6475.
2021-02-11 21:46:13 +01:00

206 lines
3.0 KiB
PHP

--TEST--
Test stripos() function : usage variations - double quoted strings for 'haystack' & 'needle' arguments
--FILE--
<?php
/* Test stripos() function by passing double quoted strings for 'haystack' & 'needle' arguments */
echo "*** Testing stripos() function: with double quoted strings ***\n";
$haystack = "Hello,\t\n\0\n $&!#%\o,()*+-./:;<=>?@hello123456he \x234 \101 ";
$needle = array(
//regular strings
"l",
"L",
"HELLO",
"hEllo",
//escape characters
"\t",
"\T", //invalid input
" ",
"\n",
"\N", //invalid input
"
", //new line
//nulls
"\0",
//boolean false
FALSE,
false,
//empty string
"",
//special chars
" ",
"$",
" $",
"&",
"!#",
"%\o",
"\o,",
"()",
"*+",
"+",
"-",
".",
".;",
":;",
";",
"<=>",
">",
"=>",
"?",
"@",
"@hEllo",
"12345", //decimal numeric string
"\x23", //hexadecimal numeric string
"#", //respective ASCII char of \x23
"\101", //octal numeric string
"A", //respective ASCII char of \101
"456HEE", //numerics + chars
$haystack //haystack as needle
);
/* loop through to get the position of the needle in haystack string */
$count = 1;
for($index=0; $index<count($needle); $index++) {
echo "-- Iteration $count --\n";
var_dump( stripos($haystack, $needle[$index]) );
var_dump( stripos($haystack, $needle[$index], $index) );
$count++;
}
echo "*** Done ***";
?>
--EXPECT--
*** Testing stripos() function: with double quoted strings ***
-- Iteration 1 --
int(2)
int(2)
-- Iteration 2 --
int(2)
int(2)
-- Iteration 3 --
int(0)
int(34)
-- Iteration 4 --
int(0)
int(34)
-- Iteration 5 --
int(6)
int(6)
-- Iteration 6 --
bool(false)
bool(false)
-- Iteration 7 --
bool(false)
bool(false)
-- Iteration 8 --
int(7)
int(7)
-- Iteration 9 --
bool(false)
bool(false)
-- Iteration 10 --
int(7)
int(9)
-- Iteration 11 --
int(8)
bool(false)
-- Iteration 12 --
int(0)
int(11)
-- Iteration 13 --
int(0)
int(12)
-- Iteration 14 --
int(0)
int(13)
-- Iteration 15 --
int(10)
int(47)
-- Iteration 16 --
int(12)
bool(false)
-- Iteration 17 --
int(11)
bool(false)
-- Iteration 18 --
int(13)
bool(false)
-- Iteration 19 --
int(14)
bool(false)
-- Iteration 20 --
int(16)
bool(false)
-- Iteration 21 --
int(17)
bool(false)
-- Iteration 22 --
int(20)
bool(false)
-- Iteration 23 --
int(22)
int(22)
-- Iteration 24 --
int(23)
int(23)
-- Iteration 25 --
int(24)
int(24)
-- Iteration 26 --
int(25)
int(25)
-- Iteration 27 --
bool(false)
bool(false)
-- Iteration 28 --
int(27)
int(27)
-- Iteration 29 --
int(28)
int(28)
-- Iteration 30 --
int(29)
int(29)
-- Iteration 31 --
int(31)
int(31)
-- Iteration 32 --
int(30)
bool(false)
-- Iteration 33 --
int(32)
int(32)
-- Iteration 34 --
int(33)
int(33)
-- Iteration 35 --
int(33)
bool(false)
-- Iteration 36 --
int(39)
int(39)
-- Iteration 37 --
int(15)
int(48)
-- Iteration 38 --
int(15)
int(48)
-- Iteration 39 --
int(51)
int(51)
-- Iteration 40 --
int(51)
int(51)
-- Iteration 41 --
bool(false)
bool(false)
-- Iteration 42 --
int(0)
bool(false)
*** Done ***