したがって、より大きな文字列内の特定の文字列を抽出する次のスクリプトがあります。
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]
か?
よろしくお願いします。良い一日をお過ごしください。