3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = 'A/B/PA ID U/PA ID U/C/D'; // get only first value starting with PA: echo preg_match('~PA[^/]+~', $string, $match) ? $match[0] : ''; echo "\n---\n"; // get all values strings with PA: var_export(preg_match_all('~PA[^/]+~', $string, $matches) ? $matches[0] : []); echo "\n---\n"; // get all delimited values: var_export(explode('/', $string));
Output for git.master, git.master_jit, rfc.property-hooks
PA ID U --- array ( 0 => 'PA ID U', 1 => 'PA ID U', ) --- array ( 0 => 'A', 1 => 'B', 2 => 'PA ID U', 3 => 'PA ID U', 4 => 'C', 5 => 'D', )

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