Answers for "php remove spaces at start and end"

PHP
2

php remove space before and after string

$words = '      my words     ';
$words = trim($words);
var_dump($words);
// string(8) "my words"
Posted by: Guest on January-28-2021

Code answers related to "php remove spaces at start and end"

Browse Popular Code Answers by Language