我有一个像下面这样的字符串$string = ' florida'
我如何才能从一开始就删除空白以形成如下所示的内容。$result_string = 'florida'
如果问题太简单,我很抱歉。
最佳答案
$string = ' florida'
$result_string = ltrim($string);
echo $result_string;// it will remove white spces from beganing
关于php - 仅从 php 字符串的开头删除空格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11097358/