我有一个问题,是否可以从github获取文件的内容? 我在github上有一个文件,我创建了一个函数来检索这个文件的内容,但它不起作用。
这是我的功能:
function process_import_file( $file ) {
// File exists?
if ( ! file_exists( $file ) ) {
return;
}
// Get file contents and decode.
$data = wp_remote_get( $file );
$data = json_decode( $data );
$this->import_data( $data );
}
url github是这样的:https://raw.githubusercontent.com/name/repo/master/file.json
当我在浏览器中打开它时,会显示内容。
你能帮助我吗?
非常感谢你:)