我有这个命令:
copy($value['formats']['format'], 'bookData/cover/'.$picturename);
当我从$value['formats']['format']
打开图片时,没问题。当我从bookData/cover
打开图像时,文件必须已损坏。我无法使用Windows图像查看器打开它,我无法使用Adobe Photoshop打开它。
我已经尝试过这个:
$content = file_get_contents($value['formats']['format'));
$fp = fopen('bookData/cover/'.$picturename, "w");
fwrite($fp, $content);
fclose($fp);
同样的结果。服务器是在Ubuntu 16.04上使用PHP7的Apache。