$pattern='/\w+@\w+.[com|cn]+/';
preg_match($pattern, $subject, $matches);
print_r($matches);
preg_match($pattern, $subject, $matches);
print_r($matches);
2015-01-07
举报