使用正则表达式将 Smarty 语法转换为 PHP 语法

发布于 2024-10-22 04:17:13 字数 446 浏览 1 评论 0原文

可能的重复:
使用正则表达式替换自定义代码的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巷雨优美回忆 2024-10-29 04:17:13

昨天有一个问题要求完全相同:
使用正则表达式替换自定义代码的 PHP 模板

只需添加第二个preg_replace 版本(或更多)以匹配其他情况:

preg_replace('/\{\$(\w+)\.(\w+)\}/', '\\$1[\'$2\']', $src);

如果您需要更多帮助: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:

preg_replace('/\{\$(\w+)\.(\w+)\}/', '\\$1[\'$2\']', $src);

If you need more help with that: https://stackoverflow.com/questions/89718/is-there-anything-like-regexbuddy-in-the-open-source-world

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文