Lines Matching refs:strcmp

2 strcmp() function
26 echo "- strcmp of '$str1_arr[$i]' and '$str1_arr[$j]' is => ";
27 var_dump(strcmp($str1_arr[$i], $str1_arr[$j]));
55 var_dump(strcmp("$obj_string1", "$obj_string2"));
60 var_dump(strcmp("hello?world,!$%**()%**[][[[&@#~!", $str_arr));
61 var_dump(strcmp("hello?world,!$%**()%**[][[[&@#~!", "$str_arr[1]"));
62 var_dump(strcmp("hello?world,!$%**()%**[][[[&@#~!", "$str_arr[2]"));
77 var_dump(strcmp($string, $string));
78 var_dump(strcmp($string, "xyz0123456789"));
79 var_dump(strcmp($string, "&&&"));
84 var_dump(strcmp($str, "\0"));
85 var_dump(strcmp($str, NULL));
86 var_dump(strcmp($str, "0"));
93 var_dump(strcmp("Hello, world", "$str"));
94 var_dump(strcmp("Hello, world'S", "$str'S"));
95 var_dump(strcmp("Hello, worldS", "$strS"));
98 var_dump(strcmp("Hello, worldS", "${str}S"));
99 var_dump(strcmp("Hello, worldS", "{$str}S"));
102 var_dump(strcmp("Hello\0world", "Hello"));
103 var_dump(strcmp("Hello\0world", "Helloworld"));
104 var_dump(strcmp("\x0", "\0"));
105 var_dump(strcmp("\000", "\0"));
106 var_dump(strcmp("\x00", ""));
107 var_dump(strcmp("\x00", NULL));
108 var_dump(strcmp("\000", NULL));
113 var_dump(strcmp(10.55555555555555555555555555, 10.5555555556)); // int(0)
114 var_dump(strcmp(10.55555555555555555555555555, 10.555555556)); // int(-1)
115 var_dump(strcmp(10.55555555595555555555555555, 10.555555556)); // int(0)
119 strcmp();
120 strcmp("");
121 strcmp("HI");
122 strcmp("Hi", "Hello", "World");
141 - strcmp of 'a' and 'a' is => int(0)
142 - strcmp of 'a' and 'A' is => int(%d)
143 - strcmp of 'a' and 'a' is => int(0)
144 - strcmp of 'a' and 'A' is => int(%d)
145 - strcmp of 'a' and '�' is => int(-%d)
146 - strcmp of 'a' and '�' is => int(-%d)
147 - strcmp of 'a' and '�' is => int(%d)
150 - strcmp of 'A' and 'a' is => int(-%d)
151 - strcmp of 'A' and 'A' is => int(0)
152 - strcmp of 'A' and 'a' is => int(-%d)
153 - strcmp of 'A' and 'A' is => int(0)
154 - strcmp of 'A' and '�' is => int(-%d)
155 - strcmp of 'A' and '�' is => int(-%d)
156 - strcmp of 'A' and '�' is => int(%d)
159 - strcmp of 'a' and 'a' is => int(0)
160 - strcmp of 'a' and 'A' is => int(%d)
161 - strcmp of 'a' and 'a' is => int(0)
162 - strcmp of 'a' and 'A' is => int(%d)
163 - strcmp of 'a' and '�' is => int(-%d)
164 - strcmp of 'a' and '�' is => int(-%d)
165 - strcmp of 'a' and '�' is => int(%d)
168 - strcmp of 'A' and 'a' is => int(-%d)
169 - strcmp of 'A' and 'A' is => int(0)
170 - strcmp of 'A' and 'a' is => int(-%d)
171 - strcmp of 'A' and 'A' is => int(0)
172 - strcmp of 'A' and '�' is => int(-%d)
173 - strcmp of 'A' and '�' is => int(-%d)
174 - strcmp of 'A' and '�' is => int(%d)
177 - strcmp of '�' and 'a' is => int(%d)
178 - strcmp of '�' and 'A' is => int(%d)
179 - strcmp of '�' and 'a' is => int(%d)
180 - strcmp of '�' and 'A' is => int(%d)
181 - strcmp of '�' and '�' is => int(0)
182 - strcmp of '�' and '�' is => int(-%d)
183 - strcmp of '�' and '�' is => int(%d)
186 - strcmp of '�' and 'a' is => int(%d)
187 - strcmp of '�' and 'A' is => int(%d)
188 - strcmp of '�' and 'a' is => int(%d)
189 - strcmp of '�' and 'A' is => int(%d)
190 - strcmp of '�' and '�' is => int(%d)
191 - strcmp of '�' and '�' is => int(0)
192 - strcmp of '�' and '�' is => int(%d)
195 - strcmp of '�' and 'a' is => int(-%d)
196 - strcmp of '�' and 'A' is => int(-%d)
197 - strcmp of '�' and 'a' is => int(-%d)
198 - strcmp of '�' and 'A' is => int(-%d)
199 - strcmp of '�' and '�' is => int(-%d)
200 - strcmp of '�' and '�' is => int(-%d)
201 - strcmp of '�' and '�' is => int(0)
218 - strcmp of 'acc' and 'acc' is => int(0)
219 - strcmp of 'acc' and 'Acc' is => int(%d)
220 - strcmp of 'acc' and 'ac' is => int(%d)
221 - strcmp of 'acc' and 'accc' is => int(-%d)
222 - strcmp of 'acc' and 'acd' is => int(-%d)
223 - strcmp of 'acc' and '?acc' is => int(%d)
224 - strcmp of 'acc' and 'acc!' is => int(-%d)
225 - strcmp of 'acc' and '$!acc' is => int(%d)
226 - strcmp of 'acc' and ';acc' is => int(%d)
229 - strcmp of 'Acc' and 'acc' is => int(-%d)
230 - strcmp of 'Acc' and 'Acc' is => int(0)
231 - strcmp of 'Acc' and 'ac' is => int(-%d)
232 - strcmp of 'Acc' and 'accc' is => int(-%d)
233 - strcmp of 'Acc' and 'acd' is => int(-%d)
234 - strcmp of 'Acc' and '?acc' is => int(%d)
235 - strcmp of 'Acc' and 'acc!' is => int(-%d)
236 - strcmp of 'Acc' and '$!acc' is => int(%d)
237 - strcmp of 'Acc' and ';acc' is => int(%d)
240 - strcmp of 'ac' and 'acc' is => int(-%d)
241 - strcmp of 'ac' and 'Acc' is => int(%d)
242 - strcmp of 'ac' and 'ac' is => int(0)
243 - strcmp of 'ac' and 'accc' is => int(-%d)
244 - strcmp of 'ac' and 'acd' is => int(-%d)
245 - strcmp of 'ac' and '?acc' is => int(%d)
246 - strcmp of 'ac' and 'acc!' is => int(-%d)
247 - strcmp of 'ac' and '$!acc' is => int(%d)
248 - strcmp of 'ac' and ';acc' is => int(%d)
251 - strcmp of 'accc' and 'acc' is => int(%d)
252 - strcmp of 'accc' and 'Acc' is => int(%d)
253 - strcmp of 'accc' and 'ac' is => int(%d)
254 - strcmp of 'accc' and 'accc' is => int(0)
255 - strcmp of 'accc' and 'acd' is => int(-%d)
256 - strcmp of 'accc' and '?acc' is => int(%d)
257 - strcmp of 'accc' and 'acc!' is => int(%d)
258 - strcmp of 'accc' and '$!acc' is => int(%d)
259 - strcmp of 'accc' and ';acc' is => int(%d)
262 - strcmp of 'acd' and 'acc' is => int(%d)
263 - strcmp of 'acd' and 'Acc' is => int(%d)
264 - strcmp of 'acd' and 'ac' is => int(%d)
265 - strcmp of 'acd' and 'accc' is => int(%d)
266 - strcmp of 'acd' and 'acd' is => int(0)
267 - strcmp of 'acd' and '?acc' is => int(%d)
268 - strcmp of 'acd' and 'acc!' is => int(%d)
269 - strcmp of 'acd' and '$!acc' is => int(%d)
270 - strcmp of 'acd' and ';acc' is => int(%d)
273 - strcmp of '?acc' and 'acc' is => int(-%d)
274 - strcmp of '?acc' and 'Acc' is => int(-%d)
275 - strcmp of '?acc' and 'ac' is => int(-%d)
276 - strcmp of '?acc' and 'accc' is => int(-%d)
277 - strcmp of '?acc' and 'acd' is => int(-%d)
278 - strcmp of '?acc' and '?acc' is => int(0)
279 - strcmp of '?acc' and 'acc!' is => int(-%d)
280 - strcmp of '?acc' and '$!acc' is => int(%d)
281 - strcmp of '?acc' and ';acc' is => int(%d)
284 - strcmp of 'acc!' and 'acc' is => int(%d)
285 - strcmp of 'acc!' and 'Acc' is => int(%d)
286 - strcmp of 'acc!' and 'ac' is => int(%d)
287 - strcmp of 'acc!' and 'accc' is => int(-%d)
288 - strcmp of 'acc!' and 'acd' is => int(-%d)
289 - strcmp of 'acc!' and '?acc' is => int(%d)
290 - strcmp of 'acc!' and 'acc!' is => int(0)
291 - strcmp of 'acc!' and '$!acc' is => int(%d)
292 - strcmp of 'acc!' and ';acc' is => int(%d)
295 - strcmp of '$!acc' and 'acc' is => int(-%d)
296 - strcmp of '$!acc' and 'Acc' is => int(-%d)
297 - strcmp of '$!acc' and 'ac' is => int(-%d)
298 - strcmp of '$!acc' and 'accc' is => int(-%d)
299 - strcmp of '$!acc' and 'acd' is => int(-%d)
300 - strcmp of '$!acc' and '?acc' is => int(-%d)
301 - strcmp of '$!acc' and 'acc!' is => int(-%d)
302 - strcmp of '$!acc' and '$!acc' is => int(0)
303 - strcmp of '$!acc' and ';acc' is => int(-%d)
306 - strcmp of ';acc' and 'acc' is => int(-%d)
307 - strcmp of ';acc' and 'Acc' is => int(-%d)
308 - strcmp of ';acc' and 'ac' is => int(-%d)
309 - strcmp of ';acc' and 'accc' is => int(-%d)
310 - strcmp of ';acc' and 'acd' is => int(-%d)
311 - strcmp of ';acc' and '?acc' is => int(-%d)
312 - strcmp of ';acc' and 'acc!' is => int(-%d)
313 - strcmp of ';acc' and '$!acc' is => int(%d)
314 - strcmp of ';acc' and ';acc' is => int(0)
332 - strcmp of '1' and '1' is => int(0)
333 - strcmp of '1' and '0' is => int(%d)
334 - strcmp of '1' and '0' is => int(%d)
335 - strcmp of '1' and '-1' is => int(%d)
336 - strcmp of '1' and '-1' is => int(%d)
337 - strcmp of '1' and '' is => int(%d)
338 - strcmp of '1' and '' is => int(%d)
339 - strcmp of '1' and '1' is => int(0)
340 - strcmp of '1' and '' is => int(%d)
341 - strcmp of '1' and 'string' is => int(-%d)
344 - strcmp of '0' and '1' is => int(-%d)
345 - strcmp of '0' and '0' is => int(0)
346 - strcmp of '0' and '0' is => int(0)
347 - strcmp of '0' and '-1' is => int(%d)
348 - strcmp of '0' and '-1' is => int(%d)
349 - strcmp of '0' and '' is => int(%d)
350 - strcmp of '0' and '' is => int(%d)
351 - strcmp of '0' and '1' is => int(-%d)
352 - strcmp of '0' and '' is => int(%d)
353 - strcmp of '0' and 'string' is => int(-%d)
356 - strcmp of '0' and '1' is => int(-%d)
357 - strcmp of '0' and '0' is => int(0)
358 - strcmp of '0' and '0' is => int(0)
359 - strcmp of '0' and '-1' is => int(%d)
360 - strcmp of '0' and '-1' is => int(%d)
361 - strcmp of '0' and '' is => int(%d)
362 - strcmp of '0' and '' is => int(%d)
363 - strcmp of '0' and '1' is => int(-%d)
364 - strcmp of '0' and '' is => int(%d)
365 - strcmp of '0' and 'string' is => int(-%d)
368 - strcmp of '-1' and '1' is => int(-%d)
369 - strcmp of '-1' and '0' is => int(-%d)
370 - strcmp of '-1' and '0' is => int(-%d)
371 - strcmp of '-1' and '-1' is => int(0)
372 - strcmp of '-1' and '-1' is => int(0)
373 - strcmp of '-1' and '' is => int(%d)
374 - strcmp of '-1' and '' is => int(%d)
375 - strcmp of '-1' and '1' is => int(-%d)
376 - strcmp of '-1' and '' is => int(%d)
377 - strcmp of '-1' and 'string' is => int(-%d)
380 - strcmp of '-1' and '1' is => int(-%d)
381 - strcmp of '-1' and '0' is => int(-%d)
382 - strcmp of '-1' and '0' is => int(-%d)
383 - strcmp of '-1' and '-1' is => int(0)
384 - strcmp of '-1' and '-1' is => int(0)
385 - strcmp of '-1' and '' is => int(%d)
386 - strcmp of '-1' and '' is => int(%d)
387 - strcmp of '-1' and '1' is => int(-%d)
388 - strcmp of '-1' and '' is => int(%d)
389 - strcmp of '-1' and 'string' is => int(-%d)
392 - strcmp of '' and '1' is => int(-%d)
393 - strcmp of '' and '0' is => int(-%d)
394 - strcmp of '' and '0' is => int(-%d)
395 - strcmp of '' and '-1' is => int(-%d)
396 - strcmp of '' and '-1' is => int(-%d)
397 - strcmp of '' and '' is => int(0)
398 - strcmp of '' and '' is => int(0)
399 - strcmp of '' and '1' is => int(-%d)
400 - strcmp of '' and '' is => int(0)
401 - strcmp of '' and 'string' is => int(-%d)
404 - strcmp of '' and '1' is => int(-%d)
405 - strcmp of '' and '0' is => int(-%d)
406 - strcmp of '' and '0' is => int(-%d)
407 - strcmp of '' and '-1' is => int(-%d)
408 - strcmp of '' and '-1' is => int(-%d)
409 - strcmp of '' and '' is => int(0)
410 - strcmp of '' and '' is => int(0)
411 - strcmp of '' and '1' is => int(-%d)
412 - strcmp of '' and '' is => int(0)
413 - strcmp of '' and 'string' is => int(-%d)
416 - strcmp of '1' and '1' is => int(0)
417 - strcmp of '1' and '0' is => int(%d)
418 - strcmp of '1' and '0' is => int(%d)
419 - strcmp of '1' and '-1' is => int(%d)
420 - strcmp of '1' and '-1' is => int(%d)
421 - strcmp of '1' and '' is => int(%d)
422 - strcmp of '1' and '' is => int(%d)
423 - strcmp of '1' and '1' is => int(0)
424 - strcmp of '1' and '' is => int(%d)
425 - strcmp of '1' and 'string' is => int(-%d)
428 - strcmp of '' and '1' is => int(-%d)
429 - strcmp of '' and '0' is => int(-%d)
430 - strcmp of '' and '0' is => int(-%d)
431 - strcmp of '' and '-1' is => int(-%d)
432 - strcmp of '' and '-1' is => int(-%d)
433 - strcmp of '' and '' is => int(0)
434 - strcmp of '' and '' is => int(0)
435 - strcmp of '' and '1' is => int(-%d)
436 - strcmp of '' and '' is => int(0)
437 - strcmp of '' and 'string' is => int(-%d)
440 - strcmp of 'string' and '1' is => int(%d)
441 - strcmp of 'string' and '0' is => int(%d)
442 - strcmp of 'string' and '0' is => int(%d)
443 - strcmp of 'string' and '-1' is => int(%d)
444 - strcmp of 'string' and '-1' is => int(%d)
445 - strcmp of 'string' and '' is => int(%d)
446 - strcmp of 'string' and '' is => int(%d)
447 - strcmp of 'string' and '1' is => int(%d)
448 - strcmp of 'string' and '' is => int(%d)
449 - strcmp of 'string' and 'string' is => int(0)
466 - strcmp of '10.5' and '10.5' is => int(0)
467 - strcmp of '10.5' and '1.5' is => int(%d)
468 - strcmp of '10.5' and '9.5' is => int(-%d)
469 - strcmp of '10.5' and '11.5' is => int(-%d)
470 - strcmp of '10.5' and '100.5' is => int(-%d)
471 - strcmp of '10.5' and '105' is => int(-%d)
472 - strcmp of '10.5' and '-10.5' is => int(%d)
473 - strcmp of '10.5' and '10' is => int(%d)
474 - strcmp of '10.5' and '0.5' is => int(%d)
477 - strcmp of '1.5' and '10.5' is => int(-%d)
478 - strcmp of '1.5' and '1.5' is => int(0)
479 - strcmp of '1.5' and '9.5' is => int(-%d)
480 - strcmp of '1.5' and '11.5' is => int(-%d)
481 - strcmp of '1.5' and '100.5' is => int(-%d)
482 - strcmp of '1.5' and '105' is => int(-%d)
483 - strcmp of '1.5' and '-10.5' is => int(%d)
484 - strcmp of '1.5' and '10' is => int(-%d)
485 - strcmp of '1.5' and '0.5' is => int(%d)
488 - strcmp of '9.5' and '10.5' is => int(%d)
489 - strcmp of '9.5' and '1.5' is => int(%d)
490 - strcmp of '9.5' and '9.5' is => int(0)
491 - strcmp of '9.5' and '11.5' is => int(%d)
492 - strcmp of '9.5' and '100.5' is => int(%d)
493 - strcmp of '9.5' and '105' is => int(%d)
494 - strcmp of '9.5' and '-10.5' is => int(%d)
495 - strcmp of '9.5' and '10' is => int(%d)
496 - strcmp of '9.5' and '0.5' is => int(%d)
499 - strcmp of '11.5' and '10.5' is => int(%d)
500 - strcmp of '11.5' and '1.5' is => int(%d)
501 - strcmp of '11.5' and '9.5' is => int(-%d)
502 - strcmp of '11.5' and '11.5' is => int(0)
503 - strcmp of '11.5' and '100.5' is => int(%d)
504 - strcmp of '11.5' and '105' is => int(%d)
505 - strcmp of '11.5' and '-10.5' is => int(%d)
506 - strcmp of '11.5' and '10' is => int(%d)
507 - strcmp of '11.5' and '0.5' is => int(%d)
510 - strcmp of '100.5' and '10.5' is => int(%d)
511 - strcmp of '100.5' and '1.5' is => int(%d)
512 - strcmp of '100.5' and '9.5' is => int(-%d)
513 - strcmp of '100.5' and '11.5' is => int(-%d)
514 - strcmp of '100.5' and '100.5' is => int(0)
515 - strcmp of '100.5' and '105' is => int(-%d)
516 - strcmp of '100.5' and '-10.5' is => int(%d)
517 - strcmp of '100.5' and '10' is => int(%d)
518 - strcmp of '100.5' and '0.5' is => int(%d)
521 - strcmp of '105' and '10.5' is => int(%d)
522 - strcmp of '105' and '1.5' is => int(%d)
523 - strcmp of '105' and '9.5' is => int(-%d)
524 - strcmp of '105' and '11.5' is => int(-%d)
525 - strcmp of '105' and '100.5' is => int(%d)
526 - strcmp of '105' and '105' is => int(0)
527 - strcmp of '105' and '-10.5' is => int(%d)
528 - strcmp of '105' and '10' is => int(%d)
529 - strcmp of '105' and '0.5' is => int(%d)
532 - strcmp of '-10.5' and '10.5' is => int(-%d)
533 - strcmp of '-10.5' and '1.5' is => int(-%d)
534 - strcmp of '-10.5' and '9.5' is => int(-%d)
535 - strcmp of '-10.5' and '11.5' is => int(-%d)
536 - strcmp of '-10.5' and '100.5' is => int(-%d)
537 - strcmp of '-10.5' and '105' is => int(-%d)
538 - strcmp of '-10.5' and '-10.5' is => int(0)
539 - strcmp of '-10.5' and '10' is => int(-%d)
540 - strcmp of '-10.5' and '0.5' is => int(-%d)
543 - strcmp of '10' and '10.5' is => int(-%d)
544 - strcmp of '10' and '1.5' is => int(%d)
545 - strcmp of '10' and '9.5' is => int(-%d)
546 - strcmp of '10' and '11.5' is => int(-%d)
547 - strcmp of '10' and '100.5' is => int(-%d)
548 - strcmp of '10' and '105' is => int(-%d)
549 - strcmp of '10' and '-10.5' is => int(%d)
550 - strcmp of '10' and '10' is => int(0)
551 - strcmp of '10' and '0.5' is => int(%d)
554 - strcmp of '0.5' and '10.5' is => int(-%d)
555 - strcmp of '0.5' and '1.5' is => int(-%d)
556 - strcmp of '0.5' and '9.5' is => int(-%d)
557 - strcmp of '0.5' and '11.5' is => int(-%d)
558 - strcmp of '0.5' and '100.5' is => int(-%d)
559 - strcmp of '0.5' and '105' is => int(-%d)
560 - strcmp of '0.5' and '-10.5' is => int(%d)
561 - strcmp of '0.5' and '10' is => int(-%d)
562 - strcmp of '0.5' and '0.5' is => int(0)
570 Warning: strcmp() expects parameter 2 to be string, array given in %s on line %d
609 Warning: strcmp() expects exactly 2 parameters, 0 given in %s on line %d
611 Warning: strcmp() expects exactly 2 parameters, 1 given in %s on line %d
613 Warning: strcmp() expects exactly 2 parameters, 1 given in %s on line %d
615 Warning: strcmp() expects exactly 2 parameters, 3 given in %s on line %d