3v4l.org

run code in 300+ PHP versions simultaneously
<?php $value = "[Code]< AA-1>[WST-2587 ] hello world WST-2589 IC-111"; print($value); print("\n"); $trimPattern = '/^[”’"\'(<]*@?(.+?)[.”’"\'\,!?:;)>]*$/'; print($trimPattern); print("\n"); $projects = array('AA', 'IC', 'WST'); $calloutPattern = "/^(?:" . implode('|', $projects) . ")-[0-9]+$/"; print($calloutPattern); print("\n"); $words = preg_split('/(\s+)/', $value); print "\nWords:\n"; foreach ($words as $word) { print($word); print("\n"); } preg_match_all('/[(<\[]\s*((' . implode('|', $projects) . ')-[0-9]+)\s*[\]>)]/', $value, $matches); print "\nMatches:\n"; foreach ($matches[1] as $match) { print($match); print("\n"); } $words = array_merge($words, $matches[1]); //$words = $words + $matches[1]; print "\nMerged Words:\n"; foreach ($words as $word) { print($word); print("\n"); }
Output for git.master, git.master_jit, rfc.property-hooks
[Code]< AA-1>[WST-2587 ] hello world WST-2589 IC-111 /^[”’"'(<]*@?(.+?)[.”’"'\,!?:;)>]*$/ /^(?:AA|IC|WST)-[0-9]+$/ Words: [Code]< AA-1>[WST-2587 ] hello world WST-2589 IC-111 Matches: AA-1 WST-2587 Merged Words: [Code]< AA-1>[WST-2587 ] hello world WST-2589 IC-111 AA-1 WST-2587

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:
50.9 ms | 401 KiB | 8 Q