php,从文本中获取一些代码

时间:2010-07-15 08:00:03

标签: php

本文如何获得WORD和WORD2。

text tex asad t text [mycode]WORD[/mycode] tex asda [mycode]WORD2[/mycode] asdasdasd

我尝试使用preg-match,但我失败了

1 个答案:

答案 0 :(得分:4)

$str = "text tex asad t text [mycode]WORD[/mycode] tex asda [mycode]WORD2[/mycode] asdasdasd";
preg_match_all("/\[mycode\](.*?)\[\/mycode\]/", $str, $preg);
print_r($preg);