- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 PHP 中设置 FTP SSL 连接。我已经很好地使用了 ftp_connect()
并且效果很好。一旦我尝试使用 ftp_ssl_connect()
,我就会收到以下错误:
Fatal error: Call to undefined function ftp_ssl_connect()
我确实在 PHP 扩展中打开了 openssl 扩展。我不确定还有什么可以做的,因为搜索谷歌没有什么可以让这个函数调用工作。有谁知道我什么时候丢失或检查是否需要在我的 wampserver 上安装其他东西?
这是我正在使用的 php 代码:
$conn_id = ftp_ssl_connect($ftp_server);
$ftp_user_name = "username";
$ftp_user_pass = "password";
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
ftp_pasv($conn_id, true);
if ((!$conn_id) || (!$login_result)) {
echo "FTP connection has failed!";
echo "Attempted to connect to $ftp_server for user $ftp_user_name";
exit;
} else {
echo "Connected to $ftp_server, for user $ftp_user_name";
}
它显然没有超过第一行,因为说 ftp_ssl_connect()
是一个未定义的函数。
最佳答案
来自 PHP Documentation :
Note: Why this function may not exist ftp_ssl_connect() is only available if both the ftp module and the OpenSSL support is built statically into php, this means that on Windows this function will be undefined in the official PHP builds. To make this function available on Windows you must compile your own PHP binaries.
Note: ftp_ssl_connect() is not intended for use with sFTP. To use sFTP with PHP, please see ssh2_sftp().
(顺便说一句:我不使用 Windows,但无法访问 ftp_ssl_connect()
)
关于php - fatal error : Call to undefined function ftp_ssl_connect(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35085677/
我正在寻找通过 SSL 连接使用 FTP 服务器的最佳方法。 (通常,向上推送文件以及获取服务器上的文件列表)。这个项目的一个要求是我必须使用客户端 X.509 证书作为身份验证过程的一部分。 我可以
我想用 FTPS 连接我的 Symfony2 应用程序: $ftp = ftp_ssl_connect("ftps://remote.platform.pro", 990); 但是我有这个错误: Un
第一次在这里提问,请轻点:-) 我正在 Synology box 上编写 PHP 命令行脚本以通过 ftps 获取文件,并从这一点开始: $ftp = ftp_ssl_connect("ftp.exa
ftp_ssl_connect 可以处理基于 TLS 的隐式 FTP 吗?默认情况下,它使用显式。 我正在尝试上传到一个服务器,该服务器仅接受端口 990 上的隐式 ftp over tls;有没有人
我正在尝试在 PHP 中设置 FTP SSL 连接。我已经很好地使用了 ftp_connect() 并且效果很好。一旦我尝试使用 ftp_ssl_connect(),我就会收到以下错误: Fatal
我是一名优秀的程序员,十分优秀!