我已经从 iPhone 应用程序上传了一个图像数据。
我解码了图像数据并尝试将图像保存在文件中。
我总是收到一条错误消息
文件 href='function.file-put-contents'>function.file-put-contents]:无法打开流:权限被拒绝。
define('UPLOAD_DIR', '/Applications/XAMPP/xamppfiles/htdocs/mc311');
$data = base64_decode($Image);
$file = UPLOAD_DIR . uniqid() . '.png';
$success = file_put_contents($file, $data);
print $success ? $file : 'Unable to save the file.';
$path = $file;