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); if (isset($t[0]) && (!isset($t[1]) || trim($t[1]) == '')) { return array( 'name' => trim($t[0]), 'num' => 0, ); } else { $num = str_replace($t[0], '', $str); return array( 'name' => trim($t[0]), 'num' => trim($num), ); } } $a = array( 'Karlstr. 2', '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] => 0 ) Array ( [name] => Karl Straße [num] => 2d ) Array ( [name] => Karlsplatz [num] => 14 a ) Array ( [name] => Karlsplatz [num] => 0 )

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