我有这个代码: http://pastebin.com/7MZHVu2T
我需要在公共功能addTopicParticipants'之间获取所有内容。和'公共功能deleteTopics'
我试过了:
/public function addtopicParticipants(.*?)public function deleteTopics/
这是我唯一记得的事。
答案 0 :(得分:1)
preg_match('/public function addTopicParticipants(.*?)public function deleteTopics/s', $text, $match;
$found = $match[1];
s
修饰符允许.
匹配换行符。
经过测试here