php – 如何在Smarty中使用str_replace

前端之家收集整理的这篇文章主要介绍了php – 如何在Smarty中使用str_replace前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用PHP smarty来声明一个链接

<{foreach item=list key=num from=$product}> 
    

鼠标悬停时产生的链接:

"http:/domain/some name"

我需要使用下划线(some_name)str_replace空格char(某个名称),该怎么做?如下结果:

"http:/domain/some_name"

我正在使用以下代码,但它不起作用.如何在html中使用带有数组的str_replace?

最佳答案
你可以使用PHP函数作为Smarty修饰符,但Smarty有a built-in replace modifier.使用它像这样:

<{foreach item=list key=num from=$product}> 
    
原文链接:https://www.f2er.com/html/426518.html

猜你在找的HTML相关文章