0

Web サイトの帯域幅を増やして、毎月の許容量が正しく機能していることを確認するスクリプトを作成したいと考えています。

<?php
for($i=0;$i>2000$i++) {
  //largest jpg on the website
  file_put_contents("tmp.jpg", file_get_contents("http://someurl/tmp.jpg"));
  unlink("tmp.jpg");
}
?>

上記のコードは私が望むように機能しますか、それとも同じファイルであるため、サーバーはそれを再度「ダウンロード」しませんか?

4

1 に答える 1

1

According to the second post here, file_get_contents does not cache PHP files. I have no reason to think it should.

于 2012-07-18T17:29:49.017 に答える