chop_basic.phpt 861 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. --TEST--
  2. Test chop() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : string chop ( string $str [, string $charlist] )
  6. * Description: Strip whitespace (or other characters) from the end of a string
  7. * Source code: ext/standard/string.c
  8. */
  9. /*
  10. * Testing chop(): basic functionality
  11. */
  12. echo "*** Testing chop() : basic functionality ***\n";
  13. // Initialize all required variables
  14. $str = "hello world\t\n\r\0\x0B ";
  15. $charlist = 'dl ';
  16. // Calling chop() with default arguments
  17. var_dump( chop($str) );
  18. // Calling chop() with all arguments
  19. var_dump( chop($str, $charlist) );
  20. // Calling chop() with the charlist not present at the end of input string
  21. var_dump( chop($str, '!') );
  22. echo "Done\n";
  23. ?>
  24. --EXPECTF--
  25. *** Testing chop() : basic functionality ***
  26. string(11) "hello world"
  27. string(16) "hello world
  28. � "
  29. string(18) "hello world
  30. � "
  31. Done