php 此脚本通过FTP读取指定的文件并通过HTTP输出。因此,您可以在此脚本的URL上指向WP ALL Import

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 此脚本通过FTP读取指定的文件并通过HTTP输出。因此,您可以在此脚本的URL上指向WP ALL Import相关的知识,希望对你有一定的参考价值。

<?php
// Note: Anyone could access your data if they guess this URL. You should remove this file from the server 
// after importing or name it to something "unguessable". For even better security use an .htaccess rule.
//
// If you're experiencing problems you can uncomment the following line so errors will be sent to the file.
// ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);
//
// Enter the FTP (or HTTP) URL of your data file below.
$url = "ftp://username:password@hostname.com/full/path/to/file.csv";

// These headers aren't strictly needed but can be helpful
header('Content-Type: text/plain');
header('Content-Disposition: attachment; filename="ftp-proxy-data.txt"');
header('Pragma: no-cache');

// Fetch the file and echo it
readfile($url);

以上是关于php 此脚本通过FTP读取指定的文件并通过HTTP输出。因此,您可以在此脚本的URL上指向WP ALL Import的主要内容,如果未能解决你的问题,请参考以下文章

通过 PHP FTP 上传整个目录

以递归方式查找最后在PHP中修改的文件和文件夹

LINUX:如何检测 ftp 文件上传完成

php 如何通过连接sftp并下载sftp服务器指定目录下的所有文件到本地?

将文件设置为私有并仅通过 PHP 脚本访问? (在服务器内)

PHP脚本将文件从一个ftp传输到另一个ftp [重复]