这是我的代码:
$myText = "@koraytugaykoray@";
$mypattern = "@k.*y@";
echo "<br />";
preg_match_all($mypattern, $myText);
我得到了:
警告:preg_match_all()需要至少3个参数,2在第12行的C:\ DocumentRoot \ Framework \ index.php中给出
但根据:http://php.net/manual/en/function.preg-match-all.php,这应该没问题?