How to trim leftmost and rightmost whitespaces of

2019-09-05 14:28发布

What function can I use?

5条回答
看我几分像从前
2楼-- · 2019-09-05 14:47

Checkout PHP Trim.

查看更多
萌系小妹纸
3楼-- · 2019-09-05 14:50
爷的心禁止访问
4楼-- · 2019-09-05 14:54

Use trim to remove whitespace at the start and end of a string.

查看更多
贼婆χ
5楼-- · 2019-09-05 15:04

left most

ltrim('text');

right most

rtrim('text');

but shortcut of above two is simply

trim('text');
查看更多
Evening l夕情丶
6楼-- · 2019-09-05 15:11

string trim ( string $str [, string $charlist ] )

This function returns a string with whitespace stripped from the beginning and end of str

查看更多
登录 后发表回答