3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getInbetweenStrings($start, $end, $str){ $matches = array(); $regex = "/$start(.*)$end/"; preg_match_all($regex, $str, $matches); return $matches[1]; } $str = "@@Ali@@"; $str_arr = getInbetweenStrings('@@', '@@', $str); print_r($str_arr); ?>

preferences:
39.33 ms | 402 KiB | 5 Q