php上传图片的问题。困了我好久。

WBOY
Release: 2016-06-23 13:55:01
Original
879 people have browsed it

问题说有在代码的注释里

先上代码。

html上代码先不上,我觉得没有问题,写代码之前我在网上找了很多案例,我写的和网上的几乎一样的。

       $ifile=$_FILES['c_photo'];  //前台传过来的文件	uploadImage($ifile); //调用方法//我写的方法function uploadImage($file){		$filepath="/uploads/photo/accredit/";    //点上传后文件夹里没有图片。该文件夹是存在的。		move_uploaded_file($file["tmp_name"],$filepath.$file["name"]); 	echo $file["tmp_name"];   //上传的是jpg图片,这里返回的是C:\wamp\tmp\php16F.tmp(去看了下这个目录下没有这个文件)	echo $file["name"];   //这里返回的是图片名字,上我上传的图片是一样的。	echo "<br>";	echo $file['error'];   //这里返回的是0,(0代表是上传成功)		}
Copy after login


回复讨论(解决方案)

$filepath = "/uploads/photo/accredit/";
这是绝对路径!
你的图片是保存在网站以外吗?

如果你的upload.php是在根目?,?句改成??
 $filepath = dirname(__FILE__)."/uploads/photo/accredit/";    //点上传后文件夹里没有图片。该文件夹是存在的。

目???????
upload.php
uploads/photo/accredit/

就是upload.php ? uploads 文件?同一?。你再??。

谢谢,我已经解决了,确实是路径的问题。

过来看看,已经解决了啊

路径问题,我也经常搞错,明明代码没有错,就是不行。

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template