[代码]PHP上传图片简单实现
2007-12-25 10:16:01 来源:WEB开发网核心提示: 以下程序使用move_uploaded_file函数上传图片到程序目录中,图片以temp_为前缀,[代码]PHP上传图片简单实现,以下是代码片段:<html> <head> <title>PHP上传图片简单实现 www.cncms.com.cn</title>
以下程序使用move_uploaded_file函数上传图片到程序目录中,图片以temp_为前缀。
以下是代码片段: <html> <head> <title>PHP上传图片简单实现 www.cncms.com.cn</title> </head> <body> <?php if($_GET[’action’] == ’upfile’) { $target_path = ’temp_’.$_FILES[’photo’][’name’]; echo ’上传的临时文件:’ .$_FILES[’photo’][’tmp_name’] . ’<br/>’; echo ’上传的目标文件:’ .$target_path . ’<br/>’; echo $_SERVER["SCRIPT_FILENAME"] . ’<br/>’; echo $_SERVER["OS"] . ’<br/>’; //测试函数: 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 ’<font color="green">Succeed!</font><br /><a href="http://’ .$_SERVER["SERVER_NAME"] . "/" .$target_path .’"><img src=’ .$target_path .’ border="0">’; } else { echo ’<font color="red">Failed!</font>’; } exit; } ?> <h1>Registration</h1> <form action="upload.php?action=upfile" method="post" name="UForm" enctype="multipart/form-data"> <fieldset> <legend>Your information</legend> <ul> <li>Your Phot<input type="file" name="photo"></li> </ul> </fieldset> <button type="submit">上传</button> </form> </body> </html> |
技术交流 永无止境
赞助商链接