『回复列表(16|隐藏机器人聊天)』
<?php
$str='<font color=reg>MINE</font>';
preg_match('<font color=reg>(.*)</font>', $str, $result);
print_r($result);
$str = '<font color=$变量>MINE</font>';
preg_match('/<font color=(.*)>(.*)<\/font>/', $str, $result);
print_r($result);
,太粗心了,你看改的地方,现在可以了