标签: php string
如果我的字符串看起来像"s="0">hello how are you doing today并且我需要它只是hello how are you doing today,那么如何在PHP中删除前7个字符呢?
"s="0">hello how are you doing today
hello how are you doing today
我认为可以使用长度并从第6位获取一个子字符串到长度,但这似乎效率低下。有没有更好的方法呢?
答案 0 :(得分:1)
使用: -
$str = substr($str, 7,strlen($str));
它将选择从第7个位置开始直到字符串长度的子字符串。