dousu1916 2013-06-17 15:43
浏览 47
已采纳

检索项目时PHP超时

I'm trying to get a directory listing from a FTP server which only accepts FTP connections over explicit TLS.

<?php
$ftp_server = "...";
$ftp_user_name = "...";
$ftp_user_pass = "...";

// set up basic ssl connection
$conn_id = ftp_ssl_connect($ftp_server);

// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
echo $login_result . "<br/>";

// change dir to "data"
$chdir_result = ftp_chdir($conn_id, "data");
echo $chdir_result . "<br/>";
echo ftp_pwd($conn_id) . "<br/>"; 

// get contents of the current directory
$contents = ftp_rawlist($conn_id, ".");

// output $contents
var_dump($contents);

// close the ssl connection
ftp_close($conn_id);
?>

The script hangs for about a minute and gives the following output:

 1
 1
 /data
 bool(false)

I also tried using ftp_nlist and print_r with no avail. (print_r just prints blank).

  • 写回答

1条回答 默认 最新

  • dragon071111 2013-06-17 16:15
    关注

    If you have a firewall or NAT enabled on your server then you have to use passive mode for your ftp connection

    Add this before ftp_rawlist()

    ftp_pasv( $conn_id, true );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路