/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php /** * Strip a Phone number of all non alphanumeric characters */ $phone = "+1(555)-555-1212"; print $phone; // Result: 15555551212 ?>