有关字符串的提取
程序员文章站
2022-04-22 21:34:33
...
有一个字符串:
$content="1+ssdsddss";
请问如何用php string函数提取出"1+",谢谢。(初学者,请耐心回答,谢谢)
回复内容:
有一个字符串:
$content="1+ssdsddss";
请问如何用php string函数提取出"1+",谢谢。(初学者,请耐心回答,谢谢)
$str = substr($content,2);