Articles Articles
How to remove all the special chracters from a string ?
To remove all the special character from a string For example Lets strip all the characters from telephone number <?php $tel = +91 9876-453-210 $tel = preg_replace('/[^a-zA-Z0-9]/','',$tel); echo $tel; ?> it will remove all the...
Read More