php trim string length with spaces code example
Example 1: remove space from start and end of string in php
$trimmed = trim($text);
var_dump($trimmed);
Example 2: how to trim text php
$text = " hello world ";
$text = trim($text);
=> "hello world"