用PHP复制站点上的远程JPG

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP复制站点上的远程JPG相关的知识,希望对你有一定的参考价值。

Used to copy the user avatar from Facebook to your community in this [Facebook Connect Tutorial](http://www.barattalo.it/facebook-connect-tutorial/ "Tutorial").
  1. function copyFile($url,$filename){
  2. $file = fopen ($url, "rb");
  3. if (!$file) return false; else {
  4. $fc = fopen($filename, "wb");
  5. while (!feof ($file)) {
  6. $line = fread ($file, 1028);
  7. fwrite($fc,$line);
  8. }
  9. fclose($fc);
  10. return true;
  11. }
  12. }

以上是关于用PHP复制站点上的远程JPG的主要内容,如果未能解决你的问题,请参考以下文章

VS 远程调试阿里云上的web站点,Remote Debugger

远程站点上的 GitHub git hook 以更新 wiki 页面

PHP实现git部署的方法教程

PHP实现git部署的方法教程

PHP常用代码片段

在 php echo 中运行 php echo? [复制]