如何使用 PHP 来使用和解析自定义用户输入变量 %var%?
我想在我的网站中输入一些新闻,并输入一个像 %custom_heading% 这样的变量,然后让 PHP 将其替换为我设置的自定义标题,这允许我在任何我想要的地方输入它,我将如何去做呢?
更新:谢谢,这很有帮助:)现在已经在我的代码中了。
I want to enter some news into my website and enter a variable like %custom_heading% and get PHP to replace this with the custom heading I have set, this allows me to enter it in wherever I want, how would I go about doing this?
Update: Thanks this helped a lot :) Already in my code now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非常简单地在字符串上使用
str_replace
...Very simple use
str_replace
on the string...