在Smarty模板引擎中执行MD5功能
在 Smarty 模板主题中,我想在模板中实现 MD5 以获取基于字符串和盐的唯一哈希值。 (无权访问调用模板的 PHP,否则这将是微不足道的)。 Smarty似乎没有内置MD5功能。我想我也许能够根据字符串的长度和其他一些独特的帐户信息并使用 Smarty 的 Math 函数创建一个哈希值,但希望可能有更好的方法来做到这一点我俯视着有人对此有什么想法或想法吗?谢谢你!
In a Smarty templated theme I would like to implement MD5 within the template to get a unique hash based on a string and a salt. (Do not have access to the PHP calling the template, or this would be trivial). Smarty does not seem to have an MD5 function built into it. I thought I might be able to create a hash based on the length of the string and some other unique account information and by using Smarty's Math function, but was hoping there might be a better way to do this that I'm overlooking. Anyone have any thoughts or ideas on this? Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只是使用库存 md5 函数,则可以将其用作修饰符。
来自文档:
源 v2
源 v3
If you're just using the stock md5 function, you can use it as a modifier.
From documentation:
Source v2
Source v3
这可能有效。没有测试过:
This might work. Haven't tested: