我正在尝试做的事情:
file_get_contents()
在线图像,然后使用新文件名将其保存到我服务器上的目录中。保存路径/目录是可写的。CHMOD 权限:777
我试过的:
file_put_contents($filepath, file_get_contents($image_url));
// 保存 0KB 图像copy($image_url,$filepath);
// 保存 0KB 图像cURL // 保存 0KB 图像
所以我已经很困惑为什么这些都不起作用,什么时候应该......
以下是我的 PHPinfo 中的相关值:
allow_url_fopen = On allow_url_include = On open_basedir = no value post_max_size = 8M upload_max_filesize = 50M upload_tmp_dir = no value max_execution_time = 18000 max_file_uploads = 20 max_input_nesting_level = 64 max_input_time = 60 max_input_vars = 1000 memory_limit = 256M
这是我完整的PHP 代码(我现在正在使用一个函数来保存图像,因为我几乎绝望地尝试任何事情):
function save_image($inPath,$outPath)
{ // Download images from remote server
$in= fopen($inPath, "rb");
$out= fopen($outPath, "wb");
while ($chunk = fread($in,8388608))
{
fwrite($out, $chunk, 8388608);
}
fclose($in);
fclose($out);
}
// THE ORIGINAL IMAGE TO GET
$image_url = 'http://m1.i.pbase.com/u38/antidote3/upload/31848351.Cute.jpg';
// THE IMAGE EXTENSION
$image_type = substr(strrchr($image_url,"."),1);
// THE NEW FILE NAME
$filename = 'product5_'. md5($image_url . $sku).'.'.$image_type;
// THE SAVE PATH
// OUTPUT: /var/www/site/media/catalog/product/FILE_NAME.FILE_TYPE
$filepath = Mage::getBaseDir('media') . DS . 'catalog'. DS . 'product'. DS . $filename;
// SAVE THIS BIATCH!
save_image($image_url, $filepath);
// OTHER SAVE METHODS
// file_put_contents($filepath, file_get_contents($image_url));
// copy($image_url,$filepath);
在图像上运行strlen(file_get_contents($image_url))
返回一个大胖子0
。
但是它不应该在我的服务器上启用以下功能吗?
allow_url_fopen = On allow_url_include = On
显然,问题不在于写作,但file_get_contents($image_url)
里面没有任何东西。
任何想法为什么?谢谢!
其他信息:
- 平台:Magento
- 语言:PHP
- PHP版本:5.4.6