我正在使用 PHP 为我的私人 android 应用程序进行某种更新管理。计划是我有一个 HTML 表单,我可以在其中选择 apk 文件和应用程序版本。当我将应用程序上传到我的服务器时,它将被放置在 apk 文件夹中并重命名。问题是我无法将文件上传到服务器。它一直显示“有错误”。Apk 文件夹拥有 777 权限。
HTML 表单:
<form action="android_u.php" method="post" enctype="multipart/form-data">
<table cellspacing="0" border="0" width="680" style="margin-top:25px;">
<tr>
<td><b>APK file:</b></td>
<td><input type="file" name="apk" placeholder="APK file..." /></td>
</tr>
<tr>
<td><b>Version:</b></td>
<td><input type="text" name="version" placeholder="Version..." /> (Example: 1.1)</td>
</tr>
</table>
<input type="image" id="upload" style="margin-left: 580px;" src="templates/images/spacer.png" />
</form>
PHP代码:
$version = $_REQUEST['version'];
$ver = str_replace(".", "-", $version);
$target_path = "/apk/ind-" . $ver . ".apk";
$file = "ind-" . $ver . ".apk";
if(move_uploaded_file($_FILES['apk']['tmp_name'], $target_path)) {
$msg = "<div class='msg2'>File uploaded</div>";
$day = date("j");
$month = date("n");
$year = date("Y");
$hour = date("G");
$minute = date("i");
$query = "INSERT INTO android (version, user_id, prenosi, file, year, month, day, hour, minute) VALUES ('$verzija', '$id', '0', '$file', '$year', '$month', '$day', '$hour', '$minute')";
mysql_query($query);
} else {
$msg = "<div class='msg2'>Error</div>";
}