3v4l.org

run code in 300+ PHP versions simultaneously
<?php function splitStreetNameNumber($str) { $str = trim($str); if (0 >= strlen($str)) { return false; } $t = preg_split('/[0-9]+/', $str); return array( 'name' => trim($t[0]), 'num' => trim(str_replace(trim($t[0]), '', $str)), ); } $a = array( 'Karlstr. 2', '12345', 'Karl Straße 2d', 'Karlsplatz 14 a', '', 'Karlsplatz', ); foreach($a as $b) { $c = splitStreetNameNumber($b); print_r($c); }
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [name] => Karlstr. [num] => 2 ) Array ( [name] => [num] => 12345 ) Array ( [name] => Karl Straße [num] => 2d ) Array ( [name] => Karlsplatz [num] => 14 a ) Array ( [name] => Karlsplatz [num] => )

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