eregi_replace_basic.phpt 994 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. --TEST--
  2. Test eregi_replace() function : basic functionality - confirm case insensitivity
  3. --FILE--
  4. <?php
  5. /* Prototype : proto string eregi_replace(string pattern, string replacement, string string)
  6. * Description: Case insensitive replace regular expression
  7. * Source code: ext/standard/reg.c
  8. * Alias to functions:
  9. */
  10. /*
  11. * Test basic functionality of eregi_replace()
  12. */
  13. echo "*** Testing eregi_replace() : basic functionality ***\n";
  14. $string = 'UPPERCASE WORDS, lowercase words, MIxED CaSe woRdS';
  15. echo "String Before...\n";
  16. var_dump($string);
  17. echo "\nString after...\n";
  18. var_dump(eregi_replace('([[:lower:]]+) word', '\\1_character', $string));
  19. echo "Done";
  20. ?>
  21. --EXPECTF--
  22. *** Testing eregi_replace() : basic functionality ***
  23. String Before...
  24. string(50) "UPPERCASE WORDS, lowercase words, MIxED CaSe woRdS"
  25. String after...
  26. Deprecated: Function eregi_replace() is deprecated in %s on line %d
  27. string(65) "UPPERCASE_characterS, lowercase_characters, MIxED CaSe_characterS"
  28. Done