当我尝试通过表单上传图像或文件时,出现此错误:
警告:ftp_put(1170.png):无法打开流:在第64行的/home/jeuxflasjq/www/envoi-jeux.php中没有此类文件或目录
我不太了解我在哪里想念东西。我链接了有关上传的代码。
$source_file = $_FILES["img"]["name"];
$destination_file = "www/images_jeux";
$conn_id = ftp_connect($ftp_server);
ftp_pasv($conn_id, true);
ftp_put($conn_id, $destination_file, $source_file, FTP_ASCII);