How to remove white space from string in PHP?
In this post we will give you information about How to remove white space from string in PHP?. Hear we will give you detail about How to remove white space from string in PHP?And how to use it also give you demo for it if it is necessary.
Sometimes we require to remove white space from given string. So at that time you can delete spaces from string using str_replace() of core php. str_replace() will help to replace whitespace that way we can remove. you can do it from bellow example.
Example:
$myString = "this is only for you";
$resultString = str_replace(' ', '', $myString);
print_r($resultString);
Hope this code and post will helped you for implement How to remove white space from string in PHP?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs