本文实例讲述了php检索或者复制远程文件的方法。分享给大家供大家参考。具体实现方法如下:
1
2
3
4
5
6
7
8
9
10
|
<?php if (!@ copy ( 'http://someserver.com/somefile.zip' , './somefile.zip' )) { $errors = error_get_last(); echo "COPY ERROR: " . $errors [ 'type' ]; echo "<br />\n" . $errors [ 'message' ]; } else { echo "File copied from remote!" ; } ?> |
希望本文所述对大家的php程序设计有所帮助。