Answers for "php change space to %20"

PHP
0

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
0

convert space to 20 php

rawurlencode("Your message goes here");
Posted by: Guest on June-28-2020

Browse Popular Code Answers by Language