変数からテキストの一部を抽出するために使用preg_match()
しています。変数が次のようになっているとします。
[htmlcode]This is supposed to be displayed[/htmlcode]
middle text
[htmlcode]This is also supposed to be displayed[/htmlcode]
の中身を抽出[htmlcode]
して配列に入力したい。を使用してこれを行っていpreg_match()
ます。
preg_match('/\[htmlcode\]([^\"]*)\[\/htmlcode\]/ms', $text, $matches);
foreach($matches as $value){
return $value . "<br />";
}
上記のコード出力
[htmlcode]This is supposed to be displayed[/htmlcode]middle text[htmlcode]This is also supposed to be displayed[/htmlcode]
それ以外の
- [htmlcode]これは表示されるはずです[/htmlcode]
- [htmlcode]これも表示されるはずです[/htmlcode]
正式にアイデアが尽きた場合