how to trim both side of string in pjhp ? code example
Example: how to trim text php
$text = " hello world ";
$text = trim($text);
=> "hello world"
$text = " hello world ";
$text = trim($text);
=> "hello world"