PEAR_Common::downloadHttp()

PEAR_Common::downloadHttp() -- Download a file through HTTP

概要

require_once 'PEAR/common.php';

string PEAR_Common::downloadHttp (string $url, object &$ui [, string $save_dir = '.' [, mixed $callback = NULL]])

説明

Download a file through HTTP. Considers suggested file name in Content-disposition: header and can run a callback function for different events. The callback will be called with two parameters: the callback type, and parameters. The implemented callback types are:

If an HTTP proxy has been configured (http_proxy PEAR_Config setting), the proxy will be used.

パラメータ

string $url

the URL to download

object &$ui

PEAR_Frontend_* instance

string $save_dir

directory to save file in

mixed $callback

function/method to call for status updates

object $config

PEAR_Config instance

返り値

string - Returns the full path of the downloaded file or a PEAR error on failure. If the error is caused by socket-related errors, the error object will have the fsockopen error code available through getCode().

例外・エラー

表 27-1PEAR_Error の値

Error codeError valueMeaningSolution
 ""  

注意

この関数は、スタティックにコールする ことはできません。