下载图片并在发布后添加post meta值

时间:2014-03-14 23:35:17

标签: php wordpress curl

我已经通过谷歌apis基本生成我的网页qr代码。这是我的基本qr代码生成器功能。

function istanbulThhemesQrCodeAction( $width = '130', $height = '130', $url = null, $choe = 'UTF-8', $type = 'qr') { 
    if(empty($url)){
        $url = get_permalink(); 
    }
    $title = get_the_title();
    echo '<div class="qrCodeOfPage"><h5>Sayfanın Qr Kodu</h5><img src="'.THEMEURL.'/assets/blank.gif" data-echo="http://chart.apis.google.com/chart?cht=' . $type . '&chs=' . $width . 'x' . $height . '&chl=' . htmlspecialchars($url) . '&choe=' . $choe . '" alt="' . $title . '" class="fatihtoprak_com_toolTip" title="Bu kodu barkod okuyucusu ile okutup mobil cihazlardan da kolaylıkla erişim sağlayabilirsiniz." /></div>';
}

当我在我的单个php上调用此函数时; qr代码成功生成。但它是一个外部形象。我想将它(qr代码图像)下载到名为post-name.jpg的服务器中,我想将此图像路径写入自定义元字段。像http://example.com/images/qrcodes/postname.jpg

一样

谁可以帮我解决这个问题? 非常感谢你。

0 个答案:

没有答案