Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能将 zip 文件从本地计算机放置到服务器位置。
不使用 FTP,FORM POST/cURL POST。
当然,您可以使用 ssh。scp 可以将文件从您的机器移动到服务器。
<?php $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); ssh2_scp_send($connection, '/local/filename', '/remote/filename', 0644); ?>