轉載: PHP讀取遠程文件的4種方法https://www.cnblogs.com/gide/p/4437879.html

1. fopen, fread 1 if($file = fopen("http://www.example.com/", "r")) { 2 while(!feof ($file)) 3 $data .= fread($file, 1024); 4 } 5 fclose($file); 2. file_get_contents 很簡單的一句話: $data = file_get_contents
相關文章
相關標籤/搜索