文件名称:php下连接ftp实现文件的上传、下载、删除文件实例代码
文件大小:34KB
文件格式:PDF
更新时间:2024-02-09 18:07:40
ftp hp php
php ftp传送文件到服务器 复制代码 代码如下: <?php // 开始 $ret = ftp_nb_get ($my_connection, “test”, “README”, FTP_BINARY, filesize(“test”)); // 或: $ret = ftp_nb_get ($my_connection, “test”, “README”, // FTP_BINARY, FTP_AUTORESUME); while ($ret == FTP_MOREDATA) { // 可以插入其它代码 echo “.”; // 继续传送… $ret = ftp_nb_continue (