Home  >  Article  >  Backend Development  >  [代码]PHP上传图片简单实现

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

WBOY
WBOYOriginal
2016-05-22 18:40:471091browse

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

以下是代码片段:
 
 
PHP上传图片简单实现 www.cncms.com.cn 
 
 
if($_GET[’action’] == ’upfile’) 

$target_path = ’temp_’.$_FILES[’photo’][’name’]; 
echo ’上传的临时文件:’ .$_FILES[’photo’][’tmp_name’] . ’
’;
echo ’上传的目标文件:’ .$target_path . ’
’;
echo $_SERVER["SCRIPT_FILENAME"] . ’
’;
echo $_SERVER["OS"] . ’
’;
//测试函数: move_uploaded_file
//也可以用函数:copy
move_uploaded_file($_FILES[’photo’][’tmp_name’], $target_path); 
echo "Upload result:"; 
if(file_exists($target_path)) { 
 if($_SERVER["OS"]!="Windows_NT"){
 @chmod($target_path,0604);
 }
 echo ’Succeed!
[代码]PHP上传图片简单实现’; 
} else { 
 echo ’Failed!’; 

exit; 

?> 

Registration

 
 
 
Your information 
     
  • Your Phot
  •  
 
 
 
 
 

技术交流 永无止境

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn