博客文章的文本*拦截器*? (javascript?php?)

发布于 2024-12-04 05:18:09 字数 292 浏览 1 评论 0原文

所以我什至不知道从哪里开始......

我有一个平台,人们可以在其中发布其他人自己的“生成”博客。

它通过表单操作获取大量信息并将其输出为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

提赋 2024-12-11 05:18:09

您正在寻找 str_replace(a, b);我的朋友。

$filtered = str_replace("naughtyword", "<img src='censored.png' />");

You are looking for str_replace(a, b); my friend.

$filtered = str_replace("naughtyword", "<img src='censored.png' />");
在风中等你 2024-12-11 05:18:09

我相信你正在谈论 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文