【发布时间】:2026-01-09 02:05:02
【问题描述】:
$thumbnail_url = 'http://img.youtube.com/vi/JaFfJN_iKdA/default.jpg';
function save_image_local($thumbnail_url)
{
//for save image at local server
$filename = time().'_hk.jpg';
$fullpath = '../../app/webroot/img/daily_videos/image/'.$filename;
$fp = fopen($fullpath,'x');
fwrite($fp, $thumbnail_url);
fclose($fp);
}
在此代码中,空白图像存储。不是原始图像存储。
【问题讨论】:
标签: php cakephp cakephp-1.3 cakephp-1.2