Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有一个表格。它有文本区域、文本字段和上传图片选项。
我希望如果用户写了一些段落并希望图像正好显示在下一段的上方,那么他/她在文本区域和文本字段中写一个独特的关键字,如“imagehere” 。此唯一文本将存储在另一列中。
然后在从数据库中检索文本时,如果有这样的关键字,则将其替换为
<img src="path">
标签
这是根据用户定义的位置显示图像的正确方法吗?
有用! 我想这样做是为了避免要求用户写
<img src="photos/uploadedimage">
在文本区域。因此,如果用户编写特定关键字,然后使用 str_replace,您可以轻松地将特定关键字替换为 img src 标签 并显示这些图像。