1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
--TEST--
Test strstr() function
--FILE--
<?php
echo "*** Testing basic functionality of strstr() ***\n";
var_dump( strstr("test string", "test") );
var_dump( strstr("test string", "string") );
var_dump( strstr("test string", "strin") );
var_dump( strstr("test string", "t s") );
var_dump( strstr("test string", "g") );
var_dump( md5(strstr("te".chr(0)."st", chr(0))) );
var_dump( strstr("tEst", "test") );
var_dump( strstr("teSt", "test") );
var_dump( strstr("", "") );
var_dump( strstr("a", "") );
var_dump( strstr("", "a") );
echo "\n*** Testing strstr() with various needles ***";
$string =
"Hello world,012033 -3.3445 NULL TRUE FALSE\0 abcd\xxyz \x000 octal\n
abcd$:Hello world";
/* needles in an array to get the string starts with needle, in $string */
$needles = array(
"Hello world",
"WORLD",
"\0",
"\x00",
"\x000",
"abcd",
"xyz",
"octal",
"-3",
-3,
"-3.344",
-3.344,
"NULL",
"0",
0,
TRUE,
"TRUE",
"1",
1,
FALSE,
"FALSE",
" ",
" ",
'b',
'\n',
"\n",
"12",
"12twelve",
$string
);
/* loop through to get the string starts with "needle" in $string */
for( $i = 0; $i < count($needles); $i++ ) {
echo "\n-- Iteration $i --\n";
var_dump( strstr($string, $needles[$i]) );
}
echo "\n*** Testing miscellaneous input data ***\n";
echo "-- Passing objects as string and needle --\n";
/* we get "Recoverable fatal error: saying Object of class needle could not be
converted to string" by default when an object is passed instead of string:
The error can be avoided by choosing the __toString magix method as follows: */
class StringCapable
{
function __toString() {
return "Hello, world";
}
}
$obj_string = new StringCapable;
class needle
{
function __toString() {
return "world";
}
}
$obj_needle = new needle;
var_dump(strstr("$obj_string", "$obj_needle"));
echo "\n-- Posiibilities with null --\n";
var_dump( strstr("", NULL) );
var_dump( strstr(NULL, NULL) );
var_dump( strstr("a", NULL) );
var_dump( strstr("/x0", "0") ); // Hexadecimal NUL
echo "\n-- A longer and heredoc string --\n";
$string = <<<EOD
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
EOD;
var_dump( strstr($string, "abcd") );
var_dump( strstr($string, "1234") );
echo "\n-- A heredoc null string --\n";
$str = <<<EOD
EOD;
var_dump( strstr($str, "\0") );
var_dump( strstr($str, "0") );
echo "\n-- simple and complex syntax strings --\n";
$needle = 'world';
/* Simple syntax */
var_dump( strstr("Hello, world", "$needle") ); // works
var_dump( strstr("Hello, world'S", "$needle'S") ); // works
var_dump( strstr("Hello, worldS", "$needleS") ); // won't work
/* String with curly braces, complex syntax */
var_dump( strstr("Hello, worldS", "${needle}S") ); // works
var_dump( strstr("Hello, worldS", "{$needle}S") ); // works
echo "\n*** Testing error conditions ***";
var_dump( strstr($string, ""));
var_dump( strstr("a", "b", "c") ); // args > expected
?>
DONE
--EXPECTF--
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in %s on line %d
*** Testing basic functionality of strstr() ***
string(11) "test string"
string(6) "string"
string(6) "string"
string(8) "t string"
string(1) "g"
string(32) "7272696018bdeb2c9a3f8d01fc2a9273"
bool(false)
bool(false)
string(0) ""
string(1) "a"
bool(false)
*** Testing strstr() with various needles ***
-- Iteration 0 --
string(85) "Hello world,012033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 1 --
bool(false)
-- Iteration 2 --
string(39) "%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 3 --
string(39) "%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 4 --
string(27) "%00 octal
abcd$:Hello world"
-- Iteration 5 --
string(37) "abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 6 --
string(31) "xyz %00 octal
abcd$:Hello world"
-- Iteration 7 --
string(24) "octal
abcd$:Hello world"
-- Iteration 8 --
string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 9 --
string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 10 --
string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 11 --
string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 12 --
string(54) "NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 13 --
string(73) "012033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 14 --
string(73) "012033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 15 --
string(72) "12033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 16 --
string(49) "TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 17 --
string(72) "12033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 18 --
string(72) "12033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 19 --
string(85) "Hello world,012033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 20 --
string(44) "FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 21 --
string(80) " world,012033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 22 --
string(59) " NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 23 --
string(36) "bcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 24 --
bool(false)
-- Iteration 25 --
string(19) "
abcd$:Hello world"
-- Iteration 26 --
string(72) "12033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
-- Iteration 27 --
bool(false)
-- Iteration 28 --
string(85) "Hello world,012033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal
abcd$:Hello world"
*** Testing miscellaneous input data ***
-- Passing objects as string and needle --
string(5) "world"
-- Posiibilities with null --
Deprecated: strstr(): Passing null to parameter #2 ($needle) of type string is deprecated in %s on line %d
string(0) ""
Deprecated: strstr(): Passing null to parameter #1 ($haystack) of type string is deprecated in %s on line %d
Deprecated: strstr(): Passing null to parameter #2 ($needle) of type string is deprecated in %s on line %d
string(0) ""
Deprecated: strstr(): Passing null to parameter #2 ($needle) of type string is deprecated in %s on line %d
string(1) "a"
string(1) "0"
-- A longer and heredoc string --
string(729) "abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789"
string(702) "123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789"
-- A heredoc null string --
bool(false)
bool(false)
-- simple and complex syntax strings --
string(5) "world"
string(7) "world'S"
Warning: Undefined variable $needleS in %s on line %d
string(13) "Hello, worldS"
string(6) "worldS"
string(6) "worldS"
*** Testing error conditions ***string(729) "abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789
abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz0123456789"
bool(false)
DONE
|