Lines Matching refs:strcasecmp

2 strcasecmp() function
26 echo "- strcasecmp of '$str1_arr[$i]' and '$str1_arr[$j]' is => ";
27 var_dump(strcasecmp($str1_arr[$i], $str1_arr[$j]));
55 var_dump(strcasecmp("$obj_string1", "$obj_string2"));
60 var_dump(strcasecmp("hello?world,!$%**()%**[][[[&@#~!", $str_arr));
61 var_dump(strcasecmp("hello?world,!$%**()%**[][[[&@#~!", "$str_arr[1]"));
62 var_dump(strcasecmp("hello?world,!$%**()%**[][[[&@#~!", "$str_arr[2]"));
77 var_dump(strcasecmp($string, $string));
78 var_dump(strcasecmp($string, "xyz0123456789"));
79 var_dump(strcasecmp($string, "&&&"));
84 var_dump(strcasecmp($str, "\0"));
85 var_dump(strcasecmp($str, NULL));
86 var_dump(strcasecmp($str, "0"));
93 var_dump(strcasecmp("Hello, world", "$str"));
94 var_dump(strcasecmp("Hello, world'S", "$str'S"));
95 var_dump(strcasecmp("Hello, worldS", "$strS"));
98 var_dump(strcasecmp("Hello, worldS", "${str}S"));
99 var_dump(strcasecmp("Hello, worldS", "{$str}S"));
102 var_dump(strcasecmp("Hello\0world", "Hello"));
103 var_dump(strcasecmp("Hello\0world", "Helloworld"));
104 var_dump(strcasecmp("\x0", "\0"));
105 var_dump(strcasecmp("\000", "\0"));
106 var_dump(strcasecmp("\x00", ""));
107 var_dump(strcasecmp("\x00", NULL));
108 var_dump(strcasecmp("\000", NULL));
113 var_dump(strcasecmp(10.55555555555555555555555555, 10.5555555556)); // int(0)
114 var_dump(strcasecmp(10.55555555555555555555555555, 10.555555556)); // int(-1)
115 var_dump(strcasecmp(10.55555555595555555555555555, 10.555555556)); // int(0)
118 strcasecmp();
119 strcasecmp("");
120 strcasecmp("HI");
121 strcasecmp("Hi", "Hello", "World");
138 - strcasecmp of 'a' and 'a' is => int(0)
139 - strcasecmp of 'a' and 'A' is => int(0)
140 - strcasecmp of 'a' and '�' is => int(-%d)
141 - strcasecmp of 'a' and '�' is => int(-%d)
142 - strcasecmp of 'a' and '�' is => int(%d)
145 - strcasecmp of 'A' and 'a' is => int(0)
146 - strcasecmp of 'A' and 'A' is => int(0)
147 - strcasecmp of 'A' and '�' is => int(-%d)
148 - strcasecmp of 'A' and '�' is => int(-%d)
149 - strcasecmp of 'A' and '�' is => int(%d)
152 - strcasecmp of '�' and 'a' is => int(%d)
153 - strcasecmp of '�' and 'A' is => int(%d)
154 - strcasecmp of '�' and '�' is => int(0)
155 - strcasecmp of '�' and '�' is => int(-%d)
156 - strcasecmp of '�' and '�' is => int(%d)
159 - strcasecmp of '�' and 'a' is => int(%d)
160 - strcasecmp of '�' and 'A' is => int(%d)
161 - strcasecmp of '�' and '�' is => int(%d)
162 - strcasecmp of '�' and '�' is => int(0)
163 - strcasecmp of '�' and '�' is => int(%d)
166 - strcasecmp of '�' and 'a' is => int(-%d)
167 - strcasecmp of '�' and 'A' is => int(-%d)
168 - strcasecmp of '�' and '�' is => int(-%d)
169 - strcasecmp of '�' and '�' is => int(-%d)
170 - strcasecmp of '�' and '�' is => int(0)
187 - strcasecmp of 'acc' and 'acc' is => int(0)
188 - strcasecmp of 'acc' and 'Acc' is => int(0)
189 - strcasecmp of 'acc' and 'aC' is => int(%d)
190 - strcasecmp of 'acc' and 'acCc' is => int(-%d)
191 - strcasecmp of 'acc' and 'acd' is => int(-%d)
192 - strcasecmp of 'acc' and '?acc' is => int(%d)
193 - strcasecmp of 'acc' and 'Acc!' is => int(-%d)
194 - strcasecmp of 'acc' and '$!acc' is => int(%d)
195 - strcasecmp of 'acc' and ';acc' is => int(%d)
198 - strcasecmp of 'Acc' and 'acc' is => int(0)
199 - strcasecmp of 'Acc' and 'Acc' is => int(0)
200 - strcasecmp of 'Acc' and 'aC' is => int(%d)
201 - strcasecmp of 'Acc' and 'acCc' is => int(-%d)
202 - strcasecmp of 'Acc' and 'acd' is => int(-%d)
203 - strcasecmp of 'Acc' and '?acc' is => int(%d)
204 - strcasecmp of 'Acc' and 'Acc!' is => int(-%d)
205 - strcasecmp of 'Acc' and '$!acc' is => int(%d)
206 - strcasecmp of 'Acc' and ';acc' is => int(%d)
209 - strcasecmp of 'aC' and 'acc' is => int(-%d)
210 - strcasecmp of 'aC' and 'Acc' is => int(-%d)
211 - strcasecmp of 'aC' and 'aC' is => int(0)
212 - strcasecmp of 'aC' and 'acCc' is => int(-%d)
213 - strcasecmp of 'aC' and 'acd' is => int(-%d)
214 - strcasecmp of 'aC' and '?acc' is => int(%d)
215 - strcasecmp of 'aC' and 'Acc!' is => int(-%d)
216 - strcasecmp of 'aC' and '$!acc' is => int(%d)
217 - strcasecmp of 'aC' and ';acc' is => int(%d)
220 - strcasecmp of 'acCc' and 'acc' is => int(%d)
221 - strcasecmp of 'acCc' and 'Acc' is => int(%d)
222 - strcasecmp of 'acCc' and 'aC' is => int(%d)
223 - strcasecmp of 'acCc' and 'acCc' is => int(0)
224 - strcasecmp of 'acCc' and 'acd' is => int(-%d)
225 - strcasecmp of 'acCc' and '?acc' is => int(%d)
226 - strcasecmp of 'acCc' and 'Acc!' is => int(%d)
227 - strcasecmp of 'acCc' and '$!acc' is => int(%d)
228 - strcasecmp of 'acCc' and ';acc' is => int(%d)
231 - strcasecmp of 'acd' and 'acc' is => int(%d)
232 - strcasecmp of 'acd' and 'Acc' is => int(%d)
233 - strcasecmp of 'acd' and 'aC' is => int(%d)
234 - strcasecmp of 'acd' and 'acCc' is => int(%d)
235 - strcasecmp of 'acd' and 'acd' is => int(0)
236 - strcasecmp of 'acd' and '?acc' is => int(%d)
237 - strcasecmp of 'acd' and 'Acc!' is => int(%d)
238 - strcasecmp of 'acd' and '$!acc' is => int(%d)
239 - strcasecmp of 'acd' and ';acc' is => int(%d)
242 - strcasecmp of '?acc' and 'acc' is => int(-%d)
243 - strcasecmp of '?acc' and 'Acc' is => int(-%d)
244 - strcasecmp of '?acc' and 'aC' is => int(-%d)
245 - strcasecmp of '?acc' and 'acCc' is => int(-%d)
246 - strcasecmp of '?acc' and 'acd' is => int(-%d)
247 - strcasecmp of '?acc' and '?acc' is => int(0)
248 - strcasecmp of '?acc' and 'Acc!' is => int(-%d)
249 - strcasecmp of '?acc' and '$!acc' is => int(%d)
250 - strcasecmp of '?acc' and ';acc' is => int(%d)
253 - strcasecmp of 'Acc!' and 'acc' is => int(%d)
254 - strcasecmp of 'Acc!' and 'Acc' is => int(%d)
255 - strcasecmp of 'Acc!' and 'aC' is => int(%d)
256 - strcasecmp of 'Acc!' and 'acCc' is => int(-%d)
257 - strcasecmp of 'Acc!' and 'acd' is => int(-%d)
258 - strcasecmp of 'Acc!' and '?acc' is => int(%d)
259 - strcasecmp of 'Acc!' and 'Acc!' is => int(0)
260 - strcasecmp of 'Acc!' and '$!acc' is => int(%d)
261 - strcasecmp of 'Acc!' and ';acc' is => int(%d)
264 - strcasecmp of '$!acc' and 'acc' is => int(-%d)
265 - strcasecmp of '$!acc' and 'Acc' is => int(-%d)
266 - strcasecmp of '$!acc' and 'aC' is => int(-%d)
267 - strcasecmp of '$!acc' and 'acCc' is => int(-%d)
268 - strcasecmp of '$!acc' and 'acd' is => int(-%d)
269 - strcasecmp of '$!acc' and '?acc' is => int(-%d)
270 - strcasecmp of '$!acc' and 'Acc!' is => int(-%d)
271 - strcasecmp of '$!acc' and '$!acc' is => int(0)
272 - strcasecmp of '$!acc' and ';acc' is => int(-%d)
275 - strcasecmp of ';acc' and 'acc' is => int(-%d)
276 - strcasecmp of ';acc' and 'Acc' is => int(-%d)
277 - strcasecmp of ';acc' and 'aC' is => int(-%d)
278 - strcasecmp of ';acc' and 'acCc' is => int(-%d)
279 - strcasecmp of ';acc' and 'acd' is => int(-%d)
280 - strcasecmp of ';acc' and '?acc' is => int(-%d)
281 - strcasecmp of ';acc' and 'Acc!' is => int(-%d)
282 - strcasecmp of ';acc' and '$!acc' is => int(%d)
283 - strcasecmp of ';acc' and ';acc' is => int(0)
303 - strcasecmp of '1' and '1' is => int(0)
304 - strcasecmp of '1' and '0' is => int(%d)
305 - strcasecmp of '1' and '0' is => int(%d)
306 - strcasecmp of '1' and '-1' is => int(%d)
307 - strcasecmp of '1' and '-1' is => int(%d)
308 - strcasecmp of '1' and '' is => int(%d)
309 - strcasecmp of '1' and '' is => int(%d)
310 - strcasecmp of '1' and '' is => int(%d)
311 - strcasecmp of '1' and '1' is => int(0)
312 - strcasecmp of '1' and '1' is => int(0)
313 - strcasecmp of '1' and '' is => int(%d)
314 - strcasecmp of '1' and 'string' is => int(-%d)
317 - strcasecmp of '0' and '1' is => int(-%d)
318 - strcasecmp of '0' and '0' is => int(0)
319 - strcasecmp of '0' and '0' is => int(0)
320 - strcasecmp of '0' and '-1' is => int(%d)
321 - strcasecmp of '0' and '-1' is => int(%d)
322 - strcasecmp of '0' and '' is => int(%d)
323 - strcasecmp of '0' and '' is => int(%d)
324 - strcasecmp of '0' and '' is => int(%d)
325 - strcasecmp of '0' and '1' is => int(-%d)
326 - strcasecmp of '0' and '1' is => int(-%d)
327 - strcasecmp of '0' and '' is => int(%d)
328 - strcasecmp of '0' and 'string' is => int(-%d)
331 - strcasecmp of '0' and '1' is => int(-%d)
332 - strcasecmp of '0' and '0' is => int(0)
333 - strcasecmp of '0' and '0' is => int(0)
334 - strcasecmp of '0' and '-1' is => int(%d)
335 - strcasecmp of '0' and '-1' is => int(%d)
336 - strcasecmp of '0' and '' is => int(%d)
337 - strcasecmp of '0' and '' is => int(%d)
338 - strcasecmp of '0' and '' is => int(%d)
339 - strcasecmp of '0' and '1' is => int(-%d)
340 - strcasecmp of '0' and '1' is => int(-%d)
341 - strcasecmp of '0' and '' is => int(%d)
342 - strcasecmp of '0' and 'string' is => int(-%d)
345 - strcasecmp of '-1' and '1' is => int(-%d)
346 - strcasecmp of '-1' and '0' is => int(-%d)
347 - strcasecmp of '-1' and '0' is => int(-%d)
348 - strcasecmp of '-1' and '-1' is => int(0)
349 - strcasecmp of '-1' and '-1' is => int(0)
350 - strcasecmp of '-1' and '' is => int(%d)
351 - strcasecmp of '-1' and '' is => int(%d)
352 - strcasecmp of '-1' and '' is => int(%d)
353 - strcasecmp of '-1' and '1' is => int(-%d)
354 - strcasecmp of '-1' and '1' is => int(-%d)
355 - strcasecmp of '-1' and '' is => int(%d)
356 - strcasecmp of '-1' and 'string' is => int(-%d)
359 - strcasecmp of '-1' and '1' is => int(-%d)
360 - strcasecmp of '-1' and '0' is => int(-%d)
361 - strcasecmp of '-1' and '0' is => int(-%d)
362 - strcasecmp of '-1' and '-1' is => int(0)
363 - strcasecmp of '-1' and '-1' is => int(0)
364 - strcasecmp of '-1' and '' is => int(%d)
365 - strcasecmp of '-1' and '' is => int(%d)
366 - strcasecmp of '-1' and '' is => int(%d)
367 - strcasecmp of '-1' and '1' is => int(-%d)
368 - strcasecmp of '-1' and '1' is => int(-%d)
369 - strcasecmp of '-1' and '' is => int(%d)
370 - strcasecmp of '-1' and 'string' is => int(-%d)
373 - strcasecmp of '' and '1' is => int(-%d)
374 - strcasecmp of '' and '0' is => int(-%d)
375 - strcasecmp of '' and '0' is => int(-%d)
376 - strcasecmp of '' and '-1' is => int(-%d)
377 - strcasecmp of '' and '-1' is => int(-%d)
378 - strcasecmp of '' and '' is => int(0)
379 - strcasecmp of '' and '' is => int(0)
380 - strcasecmp of '' and '' is => int(0)
381 - strcasecmp of '' and '1' is => int(-%d)
382 - strcasecmp of '' and '1' is => int(-%d)
383 - strcasecmp of '' and '' is => int(0)
384 - strcasecmp of '' and 'string' is => int(-%d)
387 - strcasecmp of '' and '1' is => int(-%d)
388 - strcasecmp of '' and '0' is => int(-%d)
389 - strcasecmp of '' and '0' is => int(-%d)
390 - strcasecmp of '' and '-1' is => int(-%d)
391 - strcasecmp of '' and '-1' is => int(-%d)
392 - strcasecmp of '' and '' is => int(0)
393 - strcasecmp of '' and '' is => int(0)
394 - strcasecmp of '' and '' is => int(0)
395 - strcasecmp of '' and '1' is => int(-%d)
396 - strcasecmp of '' and '1' is => int(-%d)
397 - strcasecmp of '' and '' is => int(0)
398 - strcasecmp of '' and 'string' is => int(-%d)
401 - strcasecmp of '' and '1' is => int(-%d)
402 - strcasecmp of '' and '0' is => int(-%d)
403 - strcasecmp of '' and '0' is => int(-%d)
404 - strcasecmp of '' and '-1' is => int(-%d)
405 - strcasecmp of '' and '-1' is => int(-%d)
406 - strcasecmp of '' and '' is => int(0)
407 - strcasecmp of '' and '' is => int(0)
408 - strcasecmp of '' and '' is => int(0)
409 - strcasecmp of '' and '1' is => int(-%d)
410 - strcasecmp of '' and '1' is => int(-%d)
411 - strcasecmp of '' and '' is => int(0)
412 - strcasecmp of '' and 'string' is => int(-%d)
415 - strcasecmp of '1' and '1' is => int(0)
416 - strcasecmp of '1' and '0' is => int(%d)
417 - strcasecmp of '1' and '0' is => int(%d)
418 - strcasecmp of '1' and '-1' is => int(%d)
419 - strcasecmp of '1' and '-1' is => int(%d)
420 - strcasecmp of '1' and '' is => int(%d)
421 - strcasecmp of '1' and '' is => int(%d)
422 - strcasecmp of '1' and '' is => int(%d)
423 - strcasecmp of '1' and '1' is => int(0)
424 - strcasecmp of '1' and '1' is => int(0)
425 - strcasecmp of '1' and '' is => int(%d)
426 - strcasecmp of '1' and 'string' is => int(-%d)
429 - strcasecmp of '1' and '1' is => int(0)
430 - strcasecmp of '1' and '0' is => int(%d)
431 - strcasecmp of '1' and '0' is => int(%d)
432 - strcasecmp of '1' and '-1' is => int(%d)
433 - strcasecmp of '1' and '-1' is => int(%d)
434 - strcasecmp of '1' and '' is => int(%d)
435 - strcasecmp of '1' and '' is => int(%d)
436 - strcasecmp of '1' and '' is => int(%d)
437 - strcasecmp of '1' and '1' is => int(0)
438 - strcasecmp of '1' and '1' is => int(0)
439 - strcasecmp of '1' and '' is => int(%d)
440 - strcasecmp of '1' and 'string' is => int(-%d)
443 - strcasecmp of '' and '1' is => int(-%d)
444 - strcasecmp of '' and '0' is => int(-%d)
445 - strcasecmp of '' and '0' is => int(-%d)
446 - strcasecmp of '' and '-1' is => int(-%d)
447 - strcasecmp of '' and '-1' is => int(-%d)
448 - strcasecmp of '' and '' is => int(0)
449 - strcasecmp of '' and '' is => int(0)
450 - strcasecmp of '' and '' is => int(0)
451 - strcasecmp of '' and '1' is => int(-%d)
452 - strcasecmp of '' and '1' is => int(-%d)
453 - strcasecmp of '' and '' is => int(0)
454 - strcasecmp of '' and 'string' is => int(-%d)
457 - strcasecmp of 'string' and '1' is => int(%d)
458 - strcasecmp of 'string' and '0' is => int(%d)
459 - strcasecmp of 'string' and '0' is => int(%d)
460 - strcasecmp of 'string' and '-1' is => int(%d)
461 - strcasecmp of 'string' and '-1' is => int(%d)
462 - strcasecmp of 'string' and '' is => int(%d)
463 - strcasecmp of 'string' and '' is => int(%d)
464 - strcasecmp of 'string' and '' is => int(%d)
465 - strcasecmp of 'string' and '1' is => int(%d)
466 - strcasecmp of 'string' and '1' is => int(%d)
467 - strcasecmp of 'string' and '' is => int(%d)
468 - strcasecmp of 'string' and 'string' is => int(0)
485 - strcasecmp of '10.5' and '10.5' is => int(0)
486 - strcasecmp of '10.5' and '1.5' is => int(%d)
487 - strcasecmp of '10.5' and '9.5' is => int(-%d)
488 - strcasecmp of '10.5' and '11.5' is => int(-%d)
489 - strcasecmp of '10.5' and '100.5' is => int(-%d)
490 - strcasecmp of '10.5' and '105' is => int(-%d)
491 - strcasecmp of '10.5' and '-10.5' is => int(%d)
492 - strcasecmp of '10.5' and '10' is => int(%d)
493 - strcasecmp of '10.5' and '0.5' is => int(%d)
496 - strcasecmp of '1.5' and '10.5' is => int(-%d)
497 - strcasecmp of '1.5' and '1.5' is => int(0)
498 - strcasecmp of '1.5' and '9.5' is => int(-%d)
499 - strcasecmp of '1.5' and '11.5' is => int(-%d)
500 - strcasecmp of '1.5' and '100.5' is => int(-%d)
501 - strcasecmp of '1.5' and '105' is => int(-%d)
502 - strcasecmp of '1.5' and '-10.5' is => int(%d)
503 - strcasecmp of '1.5' and '10' is => int(-%d)
504 - strcasecmp of '1.5' and '0.5' is => int(%d)
507 - strcasecmp of '9.5' and '10.5' is => int(%d)
508 - strcasecmp of '9.5' and '1.5' is => int(%d)
509 - strcasecmp of '9.5' and '9.5' is => int(0)
510 - strcasecmp of '9.5' and '11.5' is => int(%d)
511 - strcasecmp of '9.5' and '100.5' is => int(%d)
512 - strcasecmp of '9.5' and '105' is => int(%d)
513 - strcasecmp of '9.5' and '-10.5' is => int(%d)
514 - strcasecmp of '9.5' and '10' is => int(%d)
515 - strcasecmp of '9.5' and '0.5' is => int(%d)
518 - strcasecmp of '11.5' and '10.5' is => int(%d)
519 - strcasecmp of '11.5' and '1.5' is => int(%d)
520 - strcasecmp of '11.5' and '9.5' is => int(-%d)
521 - strcasecmp of '11.5' and '11.5' is => int(0)
522 - strcasecmp of '11.5' and '100.5' is => int(%d)
523 - strcasecmp of '11.5' and '105' is => int(%d)
524 - strcasecmp of '11.5' and '-10.5' is => int(%d)
525 - strcasecmp of '11.5' and '10' is => int(%d)
526 - strcasecmp of '11.5' and '0.5' is => int(%d)
529 - strcasecmp of '100.5' and '10.5' is => int(%d)
530 - strcasecmp of '100.5' and '1.5' is => int(%d)
531 - strcasecmp of '100.5' and '9.5' is => int(-%d)
532 - strcasecmp of '100.5' and '11.5' is => int(-%d)
533 - strcasecmp of '100.5' and '100.5' is => int(0)
534 - strcasecmp of '100.5' and '105' is => int(-%d)
535 - strcasecmp of '100.5' and '-10.5' is => int(%d)
536 - strcasecmp of '100.5' and '10' is => int(%d)
537 - strcasecmp of '100.5' and '0.5' is => int(%d)
540 - strcasecmp of '105' and '10.5' is => int(%d)
541 - strcasecmp of '105' and '1.5' is => int(%d)
542 - strcasecmp of '105' and '9.5' is => int(-%d)
543 - strcasecmp of '105' and '11.5' is => int(-%d)
544 - strcasecmp of '105' and '100.5' is => int(%d)
545 - strcasecmp of '105' and '105' is => int(0)
546 - strcasecmp of '105' and '-10.5' is => int(%d)
547 - strcasecmp of '105' and '10' is => int(%d)
548 - strcasecmp of '105' and '0.5' is => int(%d)
551 - strcasecmp of '-10.5' and '10.5' is => int(-%d)
552 - strcasecmp of '-10.5' and '1.5' is => int(-%d)
553 - strcasecmp of '-10.5' and '9.5' is => int(-%d)
554 - strcasecmp of '-10.5' and '11.5' is => int(-%d)
555 - strcasecmp of '-10.5' and '100.5' is => int(-%d)
556 - strcasecmp of '-10.5' and '105' is => int(-%d)
557 - strcasecmp of '-10.5' and '-10.5' is => int(0)
558 - strcasecmp of '-10.5' and '10' is => int(-%d)
559 - strcasecmp of '-10.5' and '0.5' is => int(-%d)
562 - strcasecmp of '10' and '10.5' is => int(-%d)
563 - strcasecmp of '10' and '1.5' is => int(%d)
564 - strcasecmp of '10' and '9.5' is => int(-%d)
565 - strcasecmp of '10' and '11.5' is => int(-%d)
566 - strcasecmp of '10' and '100.5' is => int(-%d)
567 - strcasecmp of '10' and '105' is => int(-%d)
568 - strcasecmp of '10' and '-10.5' is => int(%d)
569 - strcasecmp of '10' and '10' is => int(0)
570 - strcasecmp of '10' and '0.5' is => int(%d)
573 - strcasecmp of '0.5' and '10.5' is => int(-%d)
574 - strcasecmp of '0.5' and '1.5' is => int(-%d)
575 - strcasecmp of '0.5' and '9.5' is => int(-%d)
576 - strcasecmp of '0.5' and '11.5' is => int(-%d)
577 - strcasecmp of '0.5' and '100.5' is => int(-%d)
578 - strcasecmp of '0.5' and '105' is => int(-%d)
579 - strcasecmp of '0.5' and '-10.5' is => int(%d)
580 - strcasecmp of '0.5' and '10' is => int(-%d)
581 - strcasecmp of '0.5' and '0.5' is => int(0)
589 Warning: strcasecmp() expects parameter 2 to be string, array given in %s on line %d
628 Warning: strcasecmp() expects exactly 2 parameters, 0 given in %s on line %d
630 Warning: strcasecmp() expects exactly 2 parameters, 1 given in %s on line %d
632 Warning: strcasecmp() expects exactly 2 parameters, 1 given in %s on line %d
634 Warning: strcasecmp() expects exactly 2 parameters, 3 given in %s on line %d