How to optimize saving speed when saving remote images using PHP?

PHPz
Release: 2023-07-12 15:08:01
Original
918 people have browsed it

When using PHP to save remote images, you may encounter the problem of slow saving speed. This article will introduce several methods to optimize saving speed and provide relevant code examples.

Method 1: Use multi-threaded download
When saving remote images, you can use multi-threaded download to increase the saving speed. By downloading multiple images concurrently, multiple save operations can be performed simultaneously, thereby reducing waiting time. The following is a sample code that uses PHP multi-threading to download images:

<?php
function downloadImages($urls, $savePath)
{
    $mh = curl_multi_init();
    $handles = [];
    
    foreach ($urls as $i => $url) {
        $ch = curl_init($url);
        $filename = $savePath . 'image' . $i . '.jpg';
        $fp = fopen($filename, 'w');
        
        curl_setopt($ch, CURLOPT_FILE, $fp);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        
        $handles[$i] = ['ch' => $ch, 'fp' => $fp];
        
        curl_multi_add_handle($mh, $ch);
    }
    
    $running = null;
    do {
        curl_multi_exec($mh, $running);
    } while ($running > 0);
    
    foreach ($handles as $handle) {
        curl_multi_remove_handle($mh, $handle['ch']);
        curl_close($handle['ch']);
        fclose($handle['fp']);
    }
    
    curl_multi_close($mh);
}

$urls = [
    'http://example.com/image1.jpg',
    'http://example.com/image2.jpg',
    'http://example.com/image3.jpg'
];
$savePath = '/path/to/save/';

downloadImages($urls, $savePath);
Copy after login

Method 2: Use memory cache
When saving remote images, you can first download them to memory and then save them to a local file. . This reduces disk I/O operations and thus increases save speed. The following is a sample code that uses memory cache to save remote images:

<?php
function saveImage($url, $savePath)
{
    $data = file_get_contents($url);
    if ($data) {
        $filename = $savePath . basename($url);
        return file_put_contents($filename, $data);
    }
    return false;
}

$url = 'http://example.com/image.jpg';
$savePath = '/path/to/save/';

saveImage($url, $savePath);
Copy after login

Method 3: Use acceleration extension
In addition to using PHP's own functions, you can also consider using acceleration extensions to optimize the saving speed. For example, the cURL extension can be used instead of the file_get_contents function to achieve more efficient downloads. The following is a sample code that uses cURL extension to save remote images:

<?php
function saveImage($url, $savePath)
{
    $ch = curl_init($url);
    $fp = fopen($savePath, 'w');

    curl_setopt($ch, CURLOPT_FILE, $fp);
    curl_setopt($ch, CURLOPT_HEADER, 0);

    $result = curl_exec($ch);

    curl_close($ch);
    fclose($fp);

    return $result;
}

$url = 'http://example.com/image.jpg';
$savePath = '/path/to/save/image.jpg';

saveImage($url, $savePath);
Copy after login

By using the above optimization method, the speed of PHP saving remote images can be improved and better meet the needs of practical applications. Choose the optimization method that suits you according to the specific situation, and make corresponding adjustments and modifications according to your needs.

The above is the detailed content of How to optimize saving speed when saving remote images using PHP?. For more information, please follow other related articles on the PHP Chinese website!

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