PHP:从 FTP 服务器读取 .txt 文件到变量
使用多个服务器时,从远程 FTP 服务器检索数据变得必要的。本文探讨了从 FTP 服务器读取 .txt 文件并将其内容存储在 PHP 变量中的各种方法。
使用 file_get_contents
file_get_contents 函数提供了一个简单的方法读取FTP文件的解决方案。但是,它需要在 PHP 中启用 URL 包装器。语法为:
<code class="php">$contents = file_get_contents('ftp://username:password@hostname/path/to/file');</code>
如果此方法失败,请确保启用 URL 包装器。
使用 ftp_fget
更好地控制文件读取过程中,请考虑使用带有临时流句柄的 ftp_fget。该方法允许定制传输模式、被动模式和其他参数。下面的代码片段演示了这种方法:
<code class="php">$conn_id = ftp_connect('hostname'); ftp_login($conn_id, 'username', 'password'); ftp_pasv($conn_id, true); $h = fopen('php://temp', 'r+'); ftp_fget($conn_id, $h, '/path/to/file', FTP_BINARY, 0); $fstats = fstat($h); fseek($h, 0); $contents = fread($h, $fstats['size']); fclose($h); ftp_close($conn_id);</code>
请记住在实现此方法时包含错误处理。
以上是如何从 FTP 服务器读取 .txt 文件到 PHP 变量中?的详细内容。更多信息请关注PHP中文网其他相关文章!