PHP remove the left and right spaces of the string

1 $str = "Hello World!";
2 echo $str . "<br>";
3 echo trim($str," ");

 

Guess you like

Origin www.cnblogs.com/leiqi/p/12696405.html