Zend 在 Smarty 中有类似 {strip} 的东西吗?
Smarty 有一个 {strip} 函数:
{strip}
<table border='0'>
<tr>
<td>
Hello world
</td>
</tr>
</table>
{/strip}
输出:
<table border='0'><tr><td>Hello world</td></tr></table>
我也想在 Zend 中执行此操作(以减少每个请求发送的字节数),而不安装 Smarty。
但是,我不想向每个 Layout / .phtml 文件添加代码,因此 frontcontroller 插件会很好。
Smarty has a {strip} function:
{strip}
<table border='0'>
<tr>
<td>
Hello world
</td>
</tr>
</table>
{/strip}
Which outputs:
<table border='0'><tr><td>Hello world</td></tr></table>
I also want to do this in Zend (to reduce the amount of bites send on each request), without installing Smarty.
However, I don't want to add code to every Layout / .phtml file, so a frontcontroller plugin would be nice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不直接使用 Smarty 使用的正则表达式呢?这很简单:
Why not just use the same regex that Smarty uses. It's quite simple: