所以我有这个脚本可以在更大的字符串中提取给定的字符串:
function get_string($string, $start, $end){
$string = " ".$string;
$pos = strpos($string,$start);
if ($pos == 0) return "";
$pos += strlen($start);
$len = strpos($string,$end,$pos) - $pos;
return substr($string,$pos,$len);
}
所以这是字符串:
$string= '<b>Sample Sample</b> <b>Sample2 Sample2</b>';
$output = get_string($string, '<b>','</b>');
echo $output;
我真的需要一些帮助,因为我没有想法。现在,当我回声时,$output
我得到
Sample Sample
我想做一个同时显示两者的更改:
Sample Sample
Sample2 Sample2
你们中的任何人有任何想法如何修改函数并使其输出某种结果数组 $output[0]
吗$output[1]
?
提前谢谢你,祝你有个美好的一天。