博客文章的文本*拦截器*? (javascript?php?)
所以我什至不知道从哪里开始......
我有一个平台,人们可以在其中发布其他人自己的“生成”博客。
它通过表单操作获取大量信息并将其输出为 WordPress 博客文章格式。
帖子正文中的字段之一包含此“[word]”,不带引号。 (该词根据输入而不同)。
有没有办法可以根据单词将[单词]变成其他东西(最好是图形)?就像...我对脚本和东西不太了解,但我设想这样的东西...
if[word], output('wordimage.png')。
有什么方法可以做到这一点
So I'm not even sure where to begin..
I've got a platform where people can post their own 'generated' blogs from other people.
It takes a bunch of info via a form action and outputs it to a wordpress blogpost format.
One of the fields in the body of the post contains this " [word] " without the quotes. (the word is different based on the input).
Is there a way I can turn [word] into something else (preferably a graphic) based on the the words? like... I dont know much about scripts and stuff, but I envision something like this...
if[word], output('wordimage.png')instead.
Any way to do that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 str_replace(a, b);我的朋友。
You are looking for str_replace(a, b); my friend.
我相信你正在谈论 BBCodes。图像的 BBCode 通常为
[img=url]
,其中 url 替换为图像 url。You are talking about BBCodes I believe. The BBCode for an image is typically
[img=url]
, where url is replaced by the images url.