你好
所以我试图在php的字符串中找到多gettext语言字符串。
类似:
$test = "
sadsssss_('test1');
sdfsd _('test2');
";
preg_match_all("/_('(.*?)')/s", $test, $matches);
echo '<pre>';
print_r($matches);
echo '</pre>';
这个例子不起作用,但是我对模式还是不太了解。
尝试使用谷歌搜索,无法找到我可以使用的模式。
谢谢。