3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input_string = "Last time it rained was on 07/25/2013 and today is 08/09/2013."; if(preg_match_all("/\d{2}\/\d{2}\/\d{4}/", $input_string, $match)) { $replacements =array(); foreach ($match as $m) { foreach($m as $i){ $i = '/'.implode('\/',explode('/',$i)) . '/'; } } //$match[0][0] = '/'.implode('\/',explode('/',$match[0][0])) . '/'; //$match[0][1] = '/'.implode('\/',explode('/',$match[0][1])) . '/'; print_r($match); $replacements[0] = 'test1'; $replacements[1] = 'test2'; echo preg_replace($match[0], $replacements, $input_string); }

preferences:
58.31 ms | 402 KiB | 5 Q