Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个脚本来提高我网站的带宽,以检查每月津贴是否正常工作。
<?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"); } ?>
上面的代码是否也会以我想要的方式工作,或者因为它是同一个文件,服务器不会再次“下载”它吗?
根据这里的第二篇文章,file_get_contents不缓存 PHP 文件。我没有理由认为它应该。
file_get_contents