我想用正则表达式解析以下DocBlock / comment。代码
$subject = <<<HTML
/**
Theme Name: Hello world
*/
HTML;
$pattern = '/^\/(?:*)+Theme Name:(\s)?([\w]+)/';
preg_match($pattern, $subject, $matches);
print_r($matches);
运行代码输出以下错误..
警告:preg_match():编译失败:在第11行的C:\ xampp \ htdocs \ blog \ test.php中偏移6处不重复
答案 0 :(得分:0)