Answers for "php get white space replace"

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
0

PHP include causes white space at the top of the page

/*
	When you save a page as UTF-8, a special signature called 
	a byte-order mark (or BOM) is included at the beginning of 
	the file, indicating that it is a UTF-8 file. 

	You can only see BOMs with low level text editors (such as DOS edit). 
	You need to remove this signature from the included file 
	in order to get rid of the white space at the top of the page.
*/
Posted by: Guest on December-09-2021

Code answers related to "php get white space replace"

Browse Popular Code Answers by Language