我目前正在尝试将图像从我的 iOS 应用程序上传到 php 后端。我在网上跟踪了样本;但是,我收到一个 PHP 错误代码 3 (UPLOAD_ERR_PARTIAL)。谁能帮我吗?我正在使用 [NSURLConnection sendAsynchronousRequest:queue:completionHandler]。
我读过一些人禁用了 Connection 标头,但这也不起作用。我应该检查服务器端的东西吗?
<?
$uploaddir = ''; //Uploading to same directory as PHP file
$file = basename($_FILES['userfile']['name']);
$uploadfile = $uploaddir . $file;
if ($_FILES['userfile']['error'] === UPLOAD_ERR_OK) {
} else {
die("Upload failed with error code " . $_FILES['userfile']['error']);
}
?>