ds11111111111111111 2015-02-28 11:39
浏览 37
已采纳

如何在数组中替换img url

i am getting data from a ulr so now want to change url of image, my code is

@$domain = $_REQUEST['domain'];
function get_dns($url, $curl = true) {
    $responseString = '';
    if (!$curl) {
        $responseString = file_get_contents($url);
    } else {
        $ch = curl_init( $url );
        $options = array(
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_HTTPHEADER => array('Content-Type: text/html', 'User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36') , 

        );
        curl_setopt_array( $ch, $options );
        $responseString =  curl_exec($ch);
    }
    return $responseString;
}

$url ="http://intodns.scriptburn.com/index.php?domain=$domain";
$query = get_dns($url);
preg_match_all('/<!-- BEGIN CONTENT -->(.*?)<!-- END CONTENT -->/s', $query, $content);
echo $content = $content[0][0];

here i am want to replace <img src="static/images/ to <img src="https://www.whoisextractor.in/wp-content/themes/whois/img/

  • 写回答

1条回答 默认 最新

  • doutenggu4070 2015-02-28 18:15
    关注

    Finally i got Solution my self with the help of https://stackoverflow.com/a/14575485/2384642

    Now my code is

        $url ="http://intodns.scriptburn.com/index.php?domain=$domain";
        $query = get_dns($url);
        preg_match_all('/<!-- BEGIN CONTENT -->(.*?)<!-- END CONTENT -->/s', $query, $content);
        $content = $content[0][0];
        $content = preg_replace_callback('~<img\ssrc="static/images/~i', 
        function($m)
        {
            return sprintf('<img src="https://www.whoisextractor.in/wp-content/themes/whois/img/', urlencode($m[1]), $m[2], $m[3]);
        }, $content);
        echo $content;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!