strncmp_basic.phpt 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --TEST--
  2. Test strncmp() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : int strncmp ( string $str1, string $str2, int $len );
  6. * Description: Binary safe case-sensitive string comparison of the first n characters
  7. * Source code: Zend/zend_builtin_functions.c
  8. */
  9. echo "*** Testing strncmp() function: basic functionality ***\n";
  10. echo "-- Testing strncmp() with single quoted string --\n";
  11. var_dump( strncmp('Hello', 'Hello', 5) ); //expected: int(0)
  12. var_dump( strncmp('Hello', 'Hi', 5) ); //expected: value < 0
  13. var_dump( strncmp('Hi', 'Hello', 5) ); //expected: value > 0
  14. echo "-- Testing strncmp() with double quoted string --\n";
  15. var_dump( strncmp("Hello", "Hello", 5) ); //expected: int(0)
  16. var_dump( strncmp("Hello", "Hi", 5) ); //expected: value < 0
  17. var_dump( strncmp("Hi", "Hello", 5) ); //expected: value > 0
  18. echo "-- Testing strncmp() with here-doc string --\n";
  19. $str = <<<HEREDOC
  20. Hello
  21. HEREDOC;
  22. var_dump( strncmp($str, "Hello", 5) ); //expected: int(0)
  23. var_dump( strncmp($str, "Hi", 5) ); //expected: value < 0
  24. var_dump( strncmp("Hi", $str, 5) ); //expected: value > 0
  25. echo "*** Done ***";
  26. ?>
  27. --EXPECTREGEX--
  28. \*\*\* Testing strncmp\(\) function: basic functionality \*\*\*
  29. -- Testing strncmp\(\) with single quoted string --
  30. int\(0\)
  31. int\(-[1-9][0-9]*\)
  32. int\([1-9][0-9]*\)
  33. -- Testing strncmp\(\) with double quoted string --
  34. int\(0\)
  35. int\(-[1-9][0-9]*\)
  36. int\([1-9][0-9]*\)
  37. -- Testing strncmp\(\) with here-doc string --
  38. int\(0\)
  39. int\(-[1-9][0-9]*\)
  40. int\([1-9][0-9]*\)
  41. \*\*\* Done \*\*\*