3v4l.org

run code in 300+ PHP versions simultaneously
<?php $address = 'One Infinite Loop, Cupertino 95014'; $cityZipCodeRegex = '/^[^,]+,\s*(.+?)\s*(\d{5})$/'; preg_match($cityZipCodeRegex, $address, $matches); [, $city, $zipCode] = $matches; var_dump($matches); //saveCityZipCode($city, $zipCode);
Output for 8.1.0 - 8.1.29, 8.2.0 - 8.2.21, 8.3.0 - 8.3.9
array(3) { [0]=> string(34) "One Infinite Loop, Cupertino 95014" [1]=> string(9) "Cupertino" [2]=> string(5) "95014" }

preferences:
87.56 ms | 403 KiB | 67 Q