我创建了将照片从服务器上传到另一台服务器的脚本。
$file_name_with_full_path = realpath("imgs/classified/imgname.jpg");
$postimg = array('myfile'=>'@'.$file_name_with_full_path);
我在localhost上测试了这个脚本。它正在发挥作用。但我在我的服务器上测试过。它不起作用。
当我回显realpath时,这是来自服务器的照片的完整路径。
/home/admin/domains/mydomain.com/public_html/autopost/imgs/classified/imagename.jpg
没有错误。