Answers for "php remove non breaking space"

PHP
1

php remove all whitespace from a string

//remove all white spaces from a string
$whatonearth=preg_replace('/\s/','',"what o n   ear th");
Posted by: Guest on November-04-2019
0

php remove utf non breaking space

Non-breaking spaces can be troublesome with trim:

// nbsp are translated to 0xA0, so use:
// UTF encodes it as chr(0xC2).chr(0xA0)
$converted = trim($converted,chr(0xC2).chr(0xA0)); // should work
Posted by: Guest on July-23-2020

Browse Popular Code Answers by Language