在Wordpress中,$ wp_filesystem-> get_contents不起作用

时间:2017-11-09 19:25:33

标签: php wordpress

我需要创建从远程URL获取内容并将其保存到本地文件的代码。

我正在使用$wp_filesystem->get_contents()并且它无法正常工作。返回值为空。

wp_remote_get功能在我的服务器上无效,但$wp_filesystem->get_contents无法为我提供正确的结果。

我在mty wp_config.php中添加了define('FS_METHOD', 'direct') 但它什么也没做。

代码如下:

global $wp_filesystem;
$response = $wp_filesystem->get_contents(
                add_query_arg( array(
                    'code'   => $code,
                    'server' => $_SERVER['SERVER_NAME'],
                    'action' => 'downloadContents',
                    'path'   => urlencode( $kind . '/' . $demo )
                ), KCT_API_URI )
            );

0 个答案:

没有答案