读取https内容

发布于 2024-09-24 19:08:52 字数 196 浏览 1 评论 0原文

我有一个用php开发的网页。我想读取 https://(url) 文件的内容。我怎样才能读取它。我已经使用了 file_get_contents( )。问题是它可以读取 http 协议的文件,但无法读取 https 协议的文件。

请帮帮我......

提前致谢。

I have a webpage developed in php. I want to read the content of a https://(url) file. how can i read that. I have used file_get_contents().The problem is that it can read file with http protocol but cannot read file with https protocol.

Please help me out ...

Thanks in advance..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

奢欲 2024-10-01 19:08:52

使用 cURL 扩展。

$url = "https://www.example.com/";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$html_content = curl_exec($ch);
curl_close($ch);

Use the cURL extension.

$url = "https://www.example.com/";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$html_content = curl_exec($ch);
curl_close($ch);
森林迷了鹿 2024-10-01 19:08:52

file_get_contents() 应该可以正常工作,听起来你的 PHP 没有 SSL 支持。

file_get_contents() should work fine, sounds like your PHP doesn't have SSL support.

软甜啾 2024-10-01 19:08:52

问题是您需要进行身份验证。使用此:

// connection settings
$ftp_server="ipadress";
$ftp_user_name="username";
$ftp_user_pass="password";

// connect
$conn_id = ftp_ssl_connect($ftp_server); 

// login
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); 

// check connection
if ((!$conn_id) || (!$login_result)) { 
         echo "ftp-connection failed!<br>";
         echo "connect with $ftp_server using $ftp_user_name not successfull<br>"; 
         die; 
     } else {
         echo "connect witht $ftp_server using $ftp_user_name<br>";
     }

  $list=ftp_nlist($conn_id, $path);

  foreach ($list as $file) {
     echo $file.'<br>';
}

// close ftp stream
ftp_quit($conn_id); 

编辑:您需要让服务器运行 FTP 和 OpenSSL 才能使用 ftp-ssl-connect(此处来自 php.net 的说明)

Problem is you need to authenticate. Use this:

// connection settings
$ftp_server="ipadress";
$ftp_user_name="username";
$ftp_user_pass="password";

// connect
$conn_id = ftp_ssl_connect($ftp_server); 

// login
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); 

// check connection
if ((!$conn_id) || (!$login_result)) { 
         echo "ftp-connection failed!<br>";
         echo "connect with $ftp_server using $ftp_user_name not successfull<br>"; 
         die; 
     } else {
         echo "connect witht $ftp_server using $ftp_user_name<br>";
     }

  $list=ftp_nlist($conn_id, $path);

  foreach ($list as $file) {
     echo $file.'<br>';
}

// close ftp stream
ftp_quit($conn_id); 

EDIT: You need to have your server running with the FTP and OpenSSL in order to be able to use ftp-ssl-connect (description from php.net here).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文