2017-07-22 64 views
0

我新的PHP中,我想为图像做一个上传。在这里我的整个代码:PHP:错误`无法打开流:没有这样的文件或目录`

<?php 
include "checkConnection.php"; 
$fileName = $_FILES['picture']['name']; //get the file name 
$fileSize = $_FILES['picture']['size']; //get the size 
$fileError = $_FILES['picture']['error']; //get the error when upload 
if($fileSize > 0 || $fileError == 0){ //check if the file is corrupt or error 
$move = move_uploaded_file($_FILES['picture']['tmp_name'], 'home/mario/public_html/API/Content/Images/'.$fileName); //save image to the folder 
........ 
........ 
?> 

我的错误上$move = move_uploaded_file($_FILES['picture']['tmp_name'], 'home/mario/public_html/API/Content/Images/'.$fileName); //save image to the folder

Warning: move_uploaded_file(home/mario/public_html/API/Content/Images/1492599446257.jpg): failed to open stream: No such file or directory in /home/mario/public_html/API/uploadFile.php on line 7 

Warning: move_uploaded_file(): Unable to move '/tmp/phpPvn44L' to 'home/mario/public_html/API/Content/Images/1492599446257.jpg' in /home/mario/public_html/API/uploadFile.php on line 7 

我读这方面,但其不工作的一些文章。任何问题都会对我有所帮助。在此先感谢

回答

0

它如此尴尬,我忘了/在'家/ ....'它的前面解决了。

相关问题