Articles Articles

PHP basic interview questions

PHP basic interview questions

Read More

API interview questions

Read More

exclude from search

Read More

How to get child taxonomies

Read More

WordPress security

Read More
How to remove all the special chracters from a string ?

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