給定一個指向文件的URL,如何打開它並讀取PHP中的內容?打開一個文件的URL並在PHP中讀取?
$file = fopen("http://www.alinktomyfile.com/kasfafa", "r");
此行有錯誤。該docs說使用stream_get_contents()的URL,但是我得到一個錯誤:
$file_contents = stream_get_contents($file);
fclose($file);
錯誤:
警告:stream_get_contents()預計參數1是資源,空鑑於/用戶/唐納德在線/Desktop/php_boilerplate.php 24
如果你要downvote,請留言說明原因。謝謝 – 2014-10-04 05:39:05
我相信'filesize()'不適用於HTTP。你應該使用'file_get_contents()'來代替。 – 2014-10-04 05:39:38