3v4l.org

run code in 300+ PHP versions simultaneously
<?php $subject = "http://jennifer.com/arrest/def/101"; $pattern = '@^(?:http://)?([^/]+)@i'; preg_match($pattern, $subject, $matches); print_r($matches); $url = parse_url("http://www.jennifer.com/user/101/article"); print_r($url); preg_match('/\\\:[a-zA-Z0-9\_\-]+/', "/user/:id/article", $matches); print_r($matches); $pattern = "@^" . preg_replace('/\\\:[a-zA-Z0-9\_\-]+/', '([a-zA-Z0-9\-\_]+)', preg_quote('/user/:id/article')) . "$@D"; $matches = array(); $match = preg_match($pattern, '/user/101/article', $matches); print_r($match); $matches = explode('/', rtrim('/user/101/article', '/')); print_r($matches); $matches = explode('/', rtrim('/user/101/article', "/")); array_shift($matches); print_r($matches);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => http://jennifer.com [1] => jennifer.com ) Array ( [scheme] => http [host] => www.jennifer.com [path] => /user/101/article ) Array ( ) 1Array ( [0] => [1] => user [2] => 101 [3] => article ) Array ( [0] => user [1] => 101 [2] => article )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
52.5 ms | 402 KiB | 8 Q