Answers for "php string replace all small letters and no special cars and spaces"

PHP
-1

php replace space with 20

//Replace space with %20 for url to understand
$new = str_replace(' ', '%20', $your_string);

//Alternate for URL use, use this
urlencode ( string $str )
Posted by: Guest on July-23-2020

Code answers related to "php string replace all small letters and no special cars and spaces"

Browse Popular Code Answers by Language