标签: php string
我有一个很长的字符串,我想要从第一个" - "要删除,其余保存。 我试过rtrim,这不起作用。可以爆炸,以便无法正常工作
答案 0 :(得分:1)
将substr()与strpos()一起使用。
substr()
strpos()
$str = "3568206020-1201103628-13107292-0001"; //extract the substring from start to the first occurrence of the character `-`. $str = substr($str, 0, strpos($str, "-"));
输出 - 3568206020
3568206020