3v4l.org

run code in 300+ PHP versions simultaneously
<?php $blah='test case: https://www.example.com/media/foo/bar.jpg https://www.example.com/media/cat/fish.jpg some text'; $image = 'fish.jpg'; $your_pattern = '/https:\/\/www\.example\.com\/media(.*)\/'.preg_quote($image).'/'; echo preg_match($your_pattern,$blah,$matches)?$matches[0]:'fail'; echo "\n----\n"; $my_pattern='~https://www\.example\.com/media(?:[^/\s]*/)+'.preg_quote($image).'~'; echo preg_match($my_pattern,$blah,$out)?$out[0]:'fail';
Output for git.master, git.master_jit, rfc.property-hooks
https://www.example.com/media/foo/bar.jpg https://www.example.com/media/cat/fish.jpg ---- https://www.example.com/media/cat/fish.jpg

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:
41.71 ms | 1471 KiB | 4 Q