jacekwilczynski

ereg_replace polyfill

Aug 16th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. if (!function_exists('ereg_replace') {
  2.     function ereg_replace($search, $replacement, $string)
  3.     {
  4.         return preg_replace("/$search/", $replacement, $string);
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment