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("\\"),$match); } return $matches[0]; } var_dump(splitallowescape("a,b")) ?>

preferences:
39.2 ms | 402 KiB | 5 Q