我正试图从任何提供的包含一些文本数据的URL中获取纯文本内容。在其中一个URL上测试该功能时,我发现源代码中存在一些模板语言代码。
{{if user.username || user.id}}
{{:user.name}}
知道如何从我的输出html中清除这些代码吗?使用PHP有可能实现这样的功能吗?
您可以使用这样的东西:
$filtered_string = preg_replace('/' . preg_quote('{{') .
'.*?' .
preg_quote('}}') . '/', '', $str);
这里$str
将是您的输入html