3v4l.org

run code in 300+ PHP versions simultaneously
<?php function parseTicketName($ticketName) { preg_match('/^([[:alpha:]]{2})([[:alpha:]]+)B([[:digit:]]+)$/', $ticketName, $matches); var_dump($matches); exit; return array( 'system' => $matches[1], 'project' => $matches[2], 'ticket_id' => $matches[3] ); } // 2 first characters is system, then the next letters are project name and the numbers are the ticket id $s = "ASFXB10"; var_dump(parseTicketName($s));
Output for git.master, git.master_jit, rfc.property-hooks
array(4) { [0]=> string(7) "ASFXB10" [1]=> string(2) "AS" [2]=> string(2) "FX" [3]=> string(2) "10" }

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