php trim space code example
Example 1: remove empty spaces php
$string = str_replace(' ', '', $string);
Example 2: how to trim text php
$text = " hello world ";
$text = trim($text);
=> "hello world"
$string = str_replace(' ', '', $string);
$text = " hello world ";
$text = trim($text);
=> "hello world"