3v4l.org

run code in 300+ PHP versions simultaneously
<?php $applicant_person_id='44265, 442657, 224585 SSS'; // Replace any non-integer at the end by space, then trim it. $cleanstring = preg_replace("/[^0-9]+/", "", $applicant_person_id); $person_id_list = rtrim($cleanstring); var_dump($cleanstring); // Split on any non-integer value $person_ids = preg_split("/[^0-9]+/", $person_id_list); var_dump($person_ids);
Output for git.master, git.master_jit, rfc.property-hooks
string(17) "44265442657224585" array(1) { [0]=> string(17) "44265442657224585" }

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