PHP 文件上传是指将本地计算机中的文件上传到 Web 服务器上的过程
▥php
𝄐 0
php中文件上传,php文件上传用什么请求方法,php中实现文件上传需要用到哪几个函数,php上传文件到指定目录,php文件上传流程,php如何实现文件上传功能
PHP 文件上传是指将本地计算机中的文件上传到 Web 服务器上的过程。在 PHP 中,可以通过使用表单和相应的 PHP 函数来实现文件上传。
以下是一个简单的 PHP 文件上传示例:
<!DOCTYPE html>
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
</body>
</html>
在上面的示例中,我们使用了 HTML 表单元素和 enctype 属性来指定要使用多部分表单数据格式进行提交。接下来,我们需要编写一个名为 upload.php 的 PHP 脚本来处理文件上传。
<?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
echo "The file ". htmlspecialchars( basename( $_FILES["fileToUpload"]["name"])). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
?>
在上面的示例中,我们首先定义了一个名为 $target_dir 的变量来指定要将文件上传到服务器中的目标目录。然后我们使用了 basename 函数来获得上传文件的名称,并拼接到 $target_dir 后面形成最终的目标文件名。
接下来,我们对上传文件进行了一系列检查,包括检查文件是否为图片、是否已经存在、大小是否超过限制以及文件格式是否符合要求等。
最后,我们使用 move_uploaded_file 函数将文件从临时位置移动到目标目录中,完成文件上传。
PHP 文件上传是指将本地计算机中的文件上传到 Web 服务器上的过程。在 PHP 中,可以通过使用表单和相应的 PHP 函数来实现文件上传。
以下是一个简单的 PHP 文件上传示例:
<!DOCTYPE html>
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
</body>
</html>
在上面的示例中,我们使用了 HTML 表单元素和 enctype 属性来指定要使用多部分表单数据格式进行提交。接下来,我们需要编写一个名为 upload.php 的 PHP 脚本来处理文件上传。
<?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
echo "The file ". htmlspecialchars( basename( $_FILES["fileToUpload"]["name"])). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
?>
在上面的示例中,我们首先定义了一个名为 $target_dir 的变量来指定要将文件上传到服务器中的目标目录。然后我们使用了 basename 函数来获得上传文件的名称,并拼接到 $target_dir 后面形成最终的目标文件名。
接下来,我们对上传文件进行了一系列检查,包括检查文件是否为图片、是否已经存在、大小是否超过限制以及文件格式是否符合要求等。
最后,我们使用 move_uploaded_file 函数将文件从临时位置移动到目标目录中,完成文件上传。
本文地址:
/show-270667.html
版权声明:除非特别标注原创,其它均来自互联网,转载时请以链接形式注明文章出处。