3v4l.org

run code in 300+ PHP versions simultaneously
<?php $value = "[Code][WST-2587] hello world"; print($value); print("\n"); $trimPattern = '/^[”’"\'(<]*@?(.+?)[.”’"\'\,!?:;)>]*$/'; print($trimPattern); print("\n"); $projects = array('IC', 'WST'); $calloutPattern = "/^(?:" . implode('|', $projects) . ")-[0-9]+$/"; print($calloutPattern); print("\n"); $words = preg_split('/(\s+)/', $value); foreach ($words as $word) { print($word); print("\n"); } preg_match_all('/[(<\[]((' . implode('|', $projects) . ')-[0-9]+)[\]>)]', $value, $matches); $words = array_merge($words, $matches[1]); foreach ($words as $word) { print($word); print("\n"); }
Output for git.master, git.master_jit
[Code][WST-2587] hello world /^[”’"'(<]*@?(.+?)[.”’"'\,!?:;)>]*$/ /^(?:IC|WST)-[0-9]+$/ [Code][WST-2587] hello world Warning: preg_match_all(): No ending delimiter '/' found in /in/IKGXs on line 19 Warning: Trying to access array offset on value of type null in /in/IKGXs on line 20 Fatal error: Uncaught TypeError: array_merge(): Argument #2 must be of type array, null given in /in/IKGXs:20 Stack trace: #0 /in/IKGXs(20): array_merge(Array, NULL) #1 {main} thrown in /in/IKGXs on line 20
Process exited with code 255.
Output for rfc.property-hooks
[Code][WST-2587] hello world /^[”’"'(<]*@?(.+?)[.”’"'\,!?:;)>]*$/ /^(?:IC|WST)-[0-9]+$/ [Code][WST-2587] hello world Warning: preg_match_all(): No ending delimiter '/' found in /in/IKGXs on line 19 Warning: Trying to access array offset on null in /in/IKGXs on line 20 Fatal error: Uncaught TypeError: array_merge(): Argument #2 must be of type array, null given in /in/IKGXs:20 Stack trace: #0 /in/IKGXs(20): array_merge(Array, NULL) #1 {main} thrown in /in/IKGXs on line 20
Process exited with code 255.

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