What function can I use?
+2
A:
left most
ltrim('text');
right most
rtrim('text');
but shortcut of above two is simply
trim('text');
Sarfraz
2009-12-12 08:28:05
A:
string trim ( string $str [, string $charlist ] )
This function returns a string with whitespace stripped from the beginning and end of str
pek
2009-12-12 08:28:06
A:
http://php.net/manual/en/function.trim.php would be your best choice
Fifth-Edition
2009-12-12 08:28:38