使用正则表达式将 Smarty 语法转换为 PHP 语法
可能的重复:
使用正则表达式替换自定义代码的 PHP 模板
你好,
我会喜欢转换
<a href="{$game.url}">{$game.info.cleanname}</a>
为
<a href="$game['url']">$game['info']['cleanname']</a>
使用 preg_replace
Possible Duplicate:
PHP templating using custom code replacing using regex
Hi,
I would like to convert
<a href="{$game.url}">{$game.info.cleanname}</a>
to
<a href="$game['url']">$game['info']['cleanname']</a>
using preg_replace
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
昨天有一个问题要求完全相同:
使用正则表达式替换自定义代码的 PHP 模板
只需添加第二个preg_replace 版本(或更多)以匹配其他情况:
如果您需要更多帮助:https://stackoverflow.com/questions/89718/is-there-anything-like-regexbuddy-in-the-open-source-world
There was a question asking for exactly the same yesterday:
PHP templating using custom code replacing using regex
Simply add a second preg_replace version (or more) to match the other cases:
If you need more help with that: https://stackoverflow.com/questions/89718/is-there-anything-like-regexbuddy-in-the-open-source-world