php preg_match_all 在字符串中查找gettext语言字符串
php preg_match_all find gettext language strings in a string
你好
所以我试图在 php 中的字符串中查找多 gettext 语言字符串。
像这样:
$test = "
sadsssss_('test1');
sdfsd _('test2');
";
preg_match_all("/_('(.*?)')/s", $test, $matches);
echo '<pre>';
print_r($matches);
echo '</pre>';
这个例子行不通,但话又说回来,我对模式了解不多。
尝试使用谷歌搜索,找不到我可以使用的模式。
谢谢。
你好
所以我试图在 php 中的字符串中查找多 gettext 语言字符串。
像这样:
$test = "
sadsssss_('test1');
sdfsd _('test2');
";
preg_match_all("/_('(.*?)')/s", $test, $matches);
echo '<pre>';
print_r($matches);
echo '</pre>';
这个例子行不通,但话又说回来,我对模式了解不多。
尝试使用谷歌搜索,找不到我可以使用的模式。
谢谢。