str_replace_basic.phpt 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --TEST--
  2. Test str_replace() function basic function
  3. --INI--
  4. precision=14
  5. --FILE--
  6. <?php
  7. /*
  8. Prototype: mixed str_replace(mixed $search, mixed $replace,
  9. mixed $subject [, int &$count]);
  10. Description: Replace all occurrences of the search string with
  11. the replacement string
  12. */
  13. echo "\n*** Testing str_replace() on basic operations ***\n";
  14. var_dump( str_replace("", "", "") );
  15. var_dump( str_replace("e", "b", "test") );
  16. var_dump( str_replace("", "", "", $count) );
  17. var_dump( $count );
  18. var_dump( str_replace("q", "q", "q", $count) );
  19. var_dump( $count );
  20. var_dump( str_replace("long string here", "", "", $count) );
  21. var_dump( $count );
  22. $fp = fopen( __FILE__, "r" );
  23. $fp_copy = $fp;
  24. var_dump( str_replace($fp_copy, $fp_copy, $fp_copy, $fp_copy) );
  25. var_dump( $fp_copy );
  26. fclose($fp);
  27. ?>
  28. ===DONE===
  29. --EXPECTF--
  30. *** Testing str_replace() on basic operations ***
  31. string(0) ""
  32. string(4) "tbst"
  33. string(0) ""
  34. int(0)
  35. string(1) "q"
  36. int(1)
  37. string(0) ""
  38. int(0)
  39. string(%d) "Resource id #%d"
  40. int(1)
  41. ===DONE===