3v4l.org

run code in 300+ PHP versions simultaneously
<?php $applicant_person_id='44265, 442657, 224585'; // 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(21) "44265, 442657, 224585" array(3) { [0]=> string(5) "44265" [1]=> string(6) "442657" [2]=> string(6) "224585" }

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.73 ms | 401 KiB | 8 Q