doujumiao5024 2011-08-05 04:32
浏览 39

用图像替换MySQL文本字段中的标记

Brand new to PHP and MySQL and have been trying to figure out how to replace a tag (i.e. [image:1]) in a blog post's text field with the correct image. I have the ability now (thanks to some pointers in the right direction) to place the correct pictures with the correct posts, but I would like to actually drop them into the text based on where I put the tag in the post itself. For instance, right now I can echo the picture before I echo the $row['post'] itself, but I can't figure out how to program the php to actually look through the $row['post'], find the [image:1], echo the picture with that id there, and then continue echoing the rest of the post. Does that make sense?

  • 写回答

2条回答 默认 最新

  • douvcpx6526 2011-08-05 05:08
    关注

    If you have the image tag in a variable $image_tag, and if your post body is contained in $row['post'], your logic should look something like:

     $body_text = str_replace ( "[image:1]", $image_tag, $row['post']);
     echo $body_text;
    

    So basically, instead of first dumping the image and then the body text, first replace your image placeholder with the corresponding image tag before writing it out.

    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。