标签: php image-uploading
遇到这个问题:
$connection = ssh2_connect('ftp.example.com', 22); ssh2_auth_password($connection, username, password); ssh2_scp_send($connection, $_FILES['userfile']['tmp_name'], '/path/to/dir/1.jpg', 0644);
dir chmod设置为0777但没有上传图像。我做错了吗?
非常感谢!