str_用连字符替换 A 标签名称属性中的空格
$string = preg_replace("#[name=([a-zA-Z0-9 .-]+)*]#",''."$1",$string);
这脚本部分不起作用:
str_replace(' ', '-', "$1")
我需要将“ ”替换为“-”, 我还在主 preg_replace
内尝试 preg_replace
,str_ireplace
也
但这仍然不起作用
$string = preg_replace("#[name=([a-zA-Z0-9 .-]+)*]#",''."$1",$string);
This part of script doesn't work:
str_replace(' ', '-', "$1")
I need to replace " " with "-",
i also try preg_replace
inside main preg_replace
, str_ireplace
also
But this is still don't working
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更换是预先评估的,而不是在每次更换时评估。但是您可以通过使用
e
正则表达式中的修饰符:或者使用
preg_replace_callback
:The replacement is evaluated upfront and not on each replace. But you can do so by either using the
e
modifier in your regular expression:Or by using
preg_replace_callback
:我想您必须分两步完成,因为
$1
不能在str_replace()
中使用。$1
并不真正作为变量存在,它只是替换字符串中的占位符。I guess you will have to do it in two steps, since
$1
cannot be used instr_replace()
.$1
doesn’t really exist as a variable, it is only a placeholder in the replacement string.