strpbrk_basic.phpt 933 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --TEST--
  2. Test strpbrk() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : array strpbrk(string haystack, string char_list)
  6. * Description: Search a string for any of a set of characters
  7. * Source code: ext/standard/string.c
  8. * Alias to functions:
  9. */
  10. echo "*** Testing strpbrk() : basic functionality ***\n";
  11. // Initialise all required variables
  12. $text = 'This is a Simple text.';
  13. var_dump( strpbrk($text, 'mi') );
  14. var_dump( strpbrk($text, 'ZS') );
  15. var_dump( strpbrk($text, 'Z') );
  16. var_dump( strpbrk($text, 'H') );
  17. $text = '';
  18. var_dump( strpbrk($text, 'foo') );
  19. $text = " aaa aaaSLR";
  20. var_dump( strpbrk($text, ' ') );
  21. var_dump( strpbrk(5, 5) );
  22. var_dump( strpbrk(5, "5") );
  23. ?>
  24. ===DONE===
  25. --EXPECT--
  26. *** Testing strpbrk() : basic functionality ***
  27. string(20) "is is a Simple text."
  28. string(12) "Simple text."
  29. bool(false)
  30. bool(false)
  31. bool(false)
  32. string(12) " aaa aaaSLR"
  33. string(1) "5"
  34. string(1) "5"
  35. ===DONE===