PHP uses curl to get remote images_PHP tutorial

WBOY
Release: 2016-07-20 11:12:15
Original
802 people have browsed it

This article introduces the implementation method of using curl to obtain remote pictures in PHP. Friends who need to know about collecting remote pictures may feel free to refer to it.

curl requires PHP environment support. You can run the phpinfo() function to see if it is supported. Generally, you need to remove the ";" in front of "extension=php_curl.dll" in php.ini. Just restart IIS or APACHE.

The code is as follows Copy code
 代码如下 复制代码


/*
*@通过curl方式获取指定的图片到本地
*@ 完整的图片地址
*@ 要存储的文件名
*/
function getImg($url = "", $filename = "")
{

 //去除URL连接上面可能的引号
  //$url = preg_replace( '/(?:^['"]+|['"/]+$)/', '', $url );
  $hander = curl_init();
  $fp = fopen($filename,'wb');
  curl_setopt($hander,CURLOPT_URL,$url);
  curl_setopt($hander,CURLOPT_FILE,$fp);
  curl_setopt($hander,CURLOPT_HEADER,0);
  curl_setopt($hander,CURLOPT_FOLLOWLOCATION,1);
  //curl_setopt($hander,CURLOPT_RETURNTRANSFER,false);//以数据流的方式返回数据,当为false是直接显示出来
  curl_setopt($hander,CURLOPT_TIMEOUT,60);
  curl_exec($hander);
  curl_close($hander);
  fclose($fp);
  Return true;
}

调用时,直接getImg("/logo.jpg","upload/image.jpg")

/*
*@Get the specified image to local through curl

*@ Complete image address

*@ File name to be stored

*/
 代码如下 复制代码

$url = "图片绝对地址/thumbnail.jpg";

$filename = 'curl.jpg';

getImg($url, $filename);
/*
*@通过curl方式获取制定的图片到本地
*@ 完整的图片地址
*@ 要存储的文件名
*/
function getImg($url = "", $filename = "") {
if(is_dir(basename($filename))) {
echo "The Dir was not exits";
return false;
}
//去除URL连接上面可能的引号
$url = preg_replace( '/(?:^['"]+|['"/]+$)/', '', $url );

$hander = curl_init();
$fp = fopen($filename,'wb');

curl_setopt($hander,CURLOPT_URL,$url);
curl_setopt($hander,CURLOPT_FILE,$fp);
curl_setopt($hander,CURLOPT_HEADER,0);
curl_setopt($hander,CURLOPT_FOLLOWLOCATION,1);
//curl_setopt($hander,CURLOPT_RETURNTRANSFER,false);//以数据流的方式返回数据,当为false是直接显示出来
curl_setopt($hander,CURLOPT_TIMEOUT,60);

/*$options = array(
CURLOPT_URL=> '/thum-f3ccdd27d2000e3f9255a7e3e2c4880020110622095243.jpg',
        CURLOPT_FILE => $fp,
        CURLOPT_HEADER => 0,
        CURLOPT_FOLLOWLOCATION => 1,
        CURLOPT_TIMEOUT => 60
    );
    curl_setopt_array($hander, $options);
    */

    curl_exec($hander);
    curl_close($hander);
    fclose($fp);
    return  true;
}

?>


 

function getImg($url = "", $filename = ""){ //Remove possible quotation marks on the URL connection //$url = preg_replace( '/( ?:^['"]+|['"/]+$)/', '', $url ); $hander = curl_init(); $fp = fopen($filename,'wb '); curl_setopt($hander,CURLOPT_URL,$url); curl_setopt($hander,CURLOPT_FILE,$fp); curl_setopt($hander,CURLOPT_HEADER,0); curl_setopt($ hander,CURLOPT_FOLLOWLOCATION,1); //curl_setopt($hander,CURLOPT_RETURNTRANSFER,false);//Return data in the form of data stream, when it is false, it will be displayed directly curl_setopt($hander,CURLOPT_TIMEOUT,60 ); curl_exec($hander); curl_close($hander); fclose($fp); Return true;}When calling, getImg directly ("/logo.jpg","upload/image.jpg")
Implementation code 2The code is as follows: table>

curl_setopt Sets an option for a CURL call
bool curl_setopt (int ch, string option, mixed value)
The curl_setopt() function will set options for a CURL session. The option parameter is the setting you want, and value is the value given by this option.

The values ​​of the following options will be used as long integers (specified in the option parameter):

CURLOPT_INFILESIZE: When you upload a file to the remote site, this option tells PHP the size of the file you uploaded. .

CURLOPT_VERBOSE: If you want CURL to report every unexpected event, set this option to a non-zero value.

CURLOPT_HEADER: If you want to include a header in the output, set this option to a non-zero value.

CURLOPT_NOPROGRESS: If you do not want PHP to display a progress bar for CURL transfers, set this option to a non-zero value.

Note: PHP automatically sets this option to a non-zero value, you should only change this option for debugging purposes.

CURLOPT_NOBODY: If you do not want to include the body part in the output, set this option to a non-zero value.

CURLOPT_FAILONERROR: If you want PHP not to display when an error occurs (HTTP code return greater than or equal to 300), set this option to a non-zero value. The default behavior is to return a normal page and ignore the code.

CURLOPT_UPLOAD: If you want PHP to prepare for uploading, set this option to a non-zero value.

CURLOPT_POST: If you want PHP to do a regular HTTP POST, set this option to a non-zero value. This POST is of the ordinary application/x-www-from-urlencoded type, mostly used by HTML forms.

CURLOPT_FTPLISTONLY: Set this option to a non-zero value and PHP will list the directory names for FTP.

CURLOPT_FTPAPPEND: Set this option to a non-zero value and PHP will apply the remote file instead of overwriting it.

CURLOPT_NETRC: Set this option to a non-zero value and PHP will look in your ~./netrc file for the username and password of the remote site you want to connect to.

CURLOPT_FOLLOWLOCATION: Set this option to a non-zero header (like "Location: ") and the server will send it as part of the HTTP header (note that this is recursive, PHP will send something like "Location: " : "head).

CURLOPT_PUT: Set this option to a non-zero value to upload a file using HTTP. To upload this file you must set the CURLOPT_INFILE and CURLOPT_INFILESIZE options.

CURLOPT_MUTE: Set this option to a non-zero value and PHP will be completely silent for the CURL function.

CURLOPT_TIMEOUT: Set a long integer as the maximum number of seconds.

CURLOPT_LOW_SPEED_LIMIT: Set a long integer to control how many bytes are sent.

CURLOPT_LOW_SPEED_TIME: Set a long integer to control how many seconds to transmit the number of bytes specified by CURLOPT_LOW_SPEED_LIMIT.

CURLOPT_RESUME_FROM: Pass a long parameter containing the byte offset address, (the start form you want to transfer to).

CURLOPT_SSLVERSION: Pass a long parameter containing the SSL version. By default PHP will do its own hard work, in more security you have to set it manually.

CURLOPT_TIMECONDITION: Pass a long parameter to specify how to handle the CURLOPT_TIMEVALUE parameter. You can set this parameter to TIMECOND_IFMODSINCE or TIMECOND_ISUNMODSINCE. This is only for HTTP.

CURLOPT_TIMEVALUE: Pass a number of seconds from 1970-1-1 to now. This time will be used as the specified value by the CURLOPT_TIMEVALUE option, or by the default TIMECOND_IFMODSINCE.

The values ​​of the following options will be treated as strings:

CURLOPT_URL: This is the URL address you want to retrieve using PHP. You can also set this option during initialization with the curl_init() function.

CURLOPT_USERPWD: Pass a string in the form of [username]:[password] and use PHP to connect.

CURLOPT_PROXYUSERPWD: Pass a string in the format [username]:[password] to connect to the HTTP proxy.

CURLOPT_RANGE: Pass a range you want to specify. It should be in "X-Y" format, with X or Y being excluded. HTTP transfers also support several intervals, separated by commas (X-Y,N-M).

CURLOPT_POSTFIELDS: Pass a string containing all data as an HTTP "POST" operation.

CURLOPT_REFERER: A string containing a "referer" header in the HTTP request.

CURLOPT_USERAGENT: A string containing a "user-agent" header in the HTTP request.

CURLOPT_FTPPORT: Pass an IP address containing the IP address used by the ftp "POST" command. This POST command tells the remote server to connect to the IP address we specified. This string can be an IP address, a host name, a network interface name (under UNIX), or '-' (use the system default IP address).

CURLOPT_COOKIE: Pass a header connection containing an HTTP cookie.

CURLOPT_SSLCERT: Pass a string containing the certificate in PEM format.

CURLOPT_SSLCERTPASSWD: Pass a password containing the necessary password to use the CURLOPT_SSLCERT certificate.

CURLOPT_COOKIEFILE: Pass a string containing the name of the file containing cookie data. This cookie file can be in Netscape format, or it can be a stack of HTTP-style headers stored in the file.

CURLOPT_CUSTOMREQUEST: When making an HTTP request, pass a character to be used by GET or HEAD. Pass a string to be used instead of GET or HEAD when doing an HTTP request. This is useful for doing or another, more obscure, HTTP request.

Note: Don't do this before making sure your server supports the command.

The code is as follows Copy code
<🎜>$url = "Picture absolute address/thumbnail.jpg";<🎜><🎜>$filename = 'curl.jpg';<🎜> <🎜>getImg($url, $filename);<🎜>/*<🎜> *@Get the specified image locally through curl<🎜> *@ Complete image address<🎜> *@ The file name to be stored <🎜> */<🎜>function getImg($url = "", $filename = "") {<🎜> if(is_dir(basename($filename))) {<🎜> echo "The Dir was not exits" ;<🎜>                                                              . )/', '', $url );<🎜><🎜> $hander = curl_init();<🎜> $fp = fopen($filename,'wb');<🎜><🎜> curl_setopt($hander ,CURLOPT_URL,$url);<🎜> curl_setopt($hander,CURLOPT_FILE,$fp);<🎜> curl_setopt($hander,CURLOPT_HEADER,0);<🎜> curl_setopt($hander,CURLOPT_FOLLOWLOCATION,1);<🎜> //curl_setopt($hander,CURLOPT_RETURNTRANSFER,false);//Return data in the form of data stream, when it is false, it is displayed directly<🎜> curl_setopt($hander,CURLOPT_TIMEOUT,60);<🎜><🎜> /* $options = array(<🎜> CURLOPT_URL=> '/thum-f3ccdd27d2000e3f9255a7e3e2c4880020110622095243.jpg', CURLOPT_FILE => $fp, CURLOPT_HEADER => 0, CURLOPT_FOLLOWLOCATION => 1, CURLOPT_TIMEOUT => 60 ); curl_setopt_array($hander, $options); */ curl_exec($hander); curl_close($hander); fclose($fp); return true;}?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/444584.htmlTechArticleThis article introduces the implementation method of using curl to obtain remote images in PHP. Friends who need to know how to collect remote images are welcome. Enter reference. Curl requires php environment support. You can run phpin...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!