当前位置:Gxlcms > PHP教程 > [代码]PHP上传图片简单实现_PHP教程

[代码]PHP上传图片简单实现_PHP教程

时间:2021-07-01 10:21:17 帮助过:3人阅读

以下程序使用move_uploaded_file函数上传图片到程序目录中,图片以temp_为前缀。

以下是代码片段:


php<font class=reblank>(做为现在的主流开发语言)</font>上传图片简单实现 www.cncms.com.cn


(做为现在的主流开发语言)
if($_GET[https://www.gxlcms.com/’actionhttps://www.gxlcms.com/’] == https://www.gxlcms.com/’upfilehttps://www.gxlcms.com/’)
{
$target_path = https://www.gxlcms.com/’temp_https://www.gxlcms.com/’.$_FILES[https://www.gxlcms.com/’photohttps://www.gxlcms.com/’][https://www.gxlcms.com/’namehttps://www.gxlcms.com/’];
echo https://www.gxlcms.com/’上传的临时文件:https://www.gxlcms.com/’ .$_FILES[https://www.gxlcms.com/’photohttps://www.gxlcms.com/’][https://www.gxlcms.com/’tmp_namehttps://www.gxlcms.com/’] . https://www.gxlcms.com/’
https://www.gxlcms.com/’;
echo https://www.gxlcms.com/’上传的目标文件:https://www.gxlcms.com/’ .$target_path . https://www.gxlcms.com/’
https://www.gxlcms.com/’;
echo $_SERVER["SCRIPT_FILENAME"] . https://www.gxlcms.com/’
https://www.gxlcms.com/’;
echo $_SERVER["OS"] . https://www.gxlcms.com/’
https://www.gxlcms.com/’;
//测试函数: move_uploaded_file
//也可以用函数:copy
move_uploaded_file($_FILES[https://www.gxlcms.com/’photohttps://www.gxlcms.com/’][https://www.gxlcms.com/’tmp_namehttps://www.gxlcms.com/’], $target_path);
echo "Upload result:";
if(file_exists($target_path)) {
if($_SERVER["OS"]!="Windows_NT"){
@chmod($target_path,0604);
}
echo https://www.gxlcms.com/’Succeed!
https://www.gxlcms.com/’;
} else {
echo https://www.gxlcms.com/’Failed!https://www.gxlcms.com/’;
}
exit;
}
?>

Registration




技术交流 永无止境

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/509156.htmlTechArticle以下程序使用 move_uploaded_file函数上传图片到程序目录中,图片以temp_为前缀。 以下是代码片段: html head titlephp (做为现在的主流开发语言...

人气教程排行