doumen5087 2015-11-14 08:32
浏览 51

如何使用PHP更改图像标记中的特定属性

I am trying to change image attribute from data-original="" to src=""

Checkout the codes below

<img class="lazyjs bbcodeImage" src="//somesite.com/images/sample.gif" data-original="//somesite.com/images/sample.gif" alt="image">

in the above code we have 2 attributes 1st src="" and 2nd is data-original="" so i want to replace data-original="" to src="", I have tried using str_replace but it doesn't work,

$thumb = str_replace(array('data-original=','src='),array('src=','data='),$thumb);

how can i do this using PHP?

  • 写回答

1条回答 默认 最新

  • douzachan4578 2015-11-14 08:40
    关注

    I assume that you have it in a string because you are trying to use PHP.

    Here's what you need to do:

    $content = '<img class="lazyjs bbcodeImage" src="//somesite.com/images/sample.gif" data-original="//somesite.com/images/sample.gif" alt="image">';
    $content = preg_replace('/src="(.+?)"/','',$content); // Removes the old src
    $content = str_replace('data-original','src',$content); // Renames data-original to src
    
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度