3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = "This is one string with this picture pic1.jpg and here there's another one pic2.png for example"; $pat = '/\w+\d\.[a-zA-Z]{3}/'; $arrImg = null; if (preg_match_all( $pat, $str, $matches, PREG_PATTERN_ORDER )) { $arrImg = array_pop($matches); print_r($arrImg); } else { echo "no matches"; }
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => pic1.jpg [1] => pic2.png )

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:
29.43 ms | 405 KiB | 5 Q