想象一下,我有这个字符串:
$info="portugal,alemanha,belgica,porto 1-0 alemanha,belgica 2-0";
我想知道第二个字符“ – ”的位置,所以我希望结果2-0而不是结果1-0.
我正在使用这个功能,但它总是返回第一个位置,
$pos = strpos($info,'-');
任何的想法?谢谢
试试这个
原文链接:https://www.f2er.com/php/135898.htmlpreg_match_all('/-/',$info,$matches,PREG_OFFSET_CAPTURE); echo $matches[0][1][1];