3v4l.org

run code in 300+ PHP versions simultaneously
<?php function splitallowescape($str) { preg_match_all('/(?:[^\x5c,]|\x5c(?:.|$))+/', $str, $matches); foreach($matches[0] as $key => $match) { $matches[0][$key] = str_replace(array("\\\\"),array("\\"),$row["name"]); } return $matches[0]; } var_dump(splitallowescape("a,b")) ?>

preferences:
105.68 ms | 405 KiB | 6 Q