너비 및 높이 임계값이 있는 URL에서 효율적으로 이미지 가져오기
문제:
이미지 검색 두 크기가 모두 200픽셀 이상인 이미지와 같이 특정 너비 및 높이 요구 사항을 충족하는 특정 URL에서 웹 개발의 일반적인 작업입니다. 그러나 기존 방법을 사용하면 이 프로세스에 시간이 많이 걸릴 수 있습니다.
현재 접근 방식:
제공된 코드는 모든 주어진 URL의 요소, getimagesize()를 사용하여 이미지 크기를 검색합니다. 이 접근 방식은 효과가 있지만 실행 시간이 눈에 띌 수 있습니다.
제안된 솔루션:
프로세스 속도를 높이려면 다음 최적화를 고려하세요.
코드 구현:
다음 코드는 이러한 최적화를 통합하는 보다 효율적인 구현을 제시합니다.
<code class="php">require 'simple_html_dom.php'; $url = 'http://www.huffingtonpost.com'; $html = file_get_html($url); $nodes = array(); $start = microtime(); $res = array(); if ($html->find('img')) { foreach ($html->find('img') as $element) { if (startsWith($element->src, "/")) { $element->src = $url . $element->src; } if (!startsWith($element->src, "http")) { $element->src = $url . "/" . $element->src; } $nodes[] = $element->src; } } echo "<pre class="brush:php;toolbar:false">"; print_r(imageDownload($nodes, 200, 200)); echo "<h1>", microtime() - $start, "</h1>"; function imageDownload($nodes, $maxHeight = 0, $maxWidth = 0) { $mh = curl_multi_init(); $curl_array = array(); foreach ($nodes as $i => $url) { $curl_array[$i] = curl_init($url); curl_setopt($curl_array[$i], CURLOPT_RETURNTRANSFER, true); curl_setopt($curl_array[$i], CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729)'); curl_setopt($curl_array[$i], CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($curl_array[$i], CURLOPT_TIMEOUT, 15); curl_multi_add_handle($mh, $curl_array[$i]); } $running = NULL; do { usleep(10000); curl_multi_exec($mh, $running); } while ($running > 0); $res = array(); foreach ($nodes as $i => $url) { $curlErrorCode = curl_errno($curl_array[$i]); if ($curlErrorCode === 0) { $info = curl_getinfo($curl_array[$i]); $ext = getExtention($info['content_type']); if ($info['content_type'] !== null) { $temp = "temp/img" . md5(mt_rand()) . $ext; touch($temp); $imageContent = curl_multi_getcontent($curl_array[$i]); file_put_contents($temp, $imageContent); if ($maxHeight == 0 || $maxWidth == 0) { $res[] = $temp; } else { $size = getimagesize($temp); if ($size[1] >= $maxHeight && $size[0] >= $maxWidth) { $res[] = $temp; } else { unlink($temp); } } } } curl_multi_remove_handle($mh, $curl_array[$i]); curl_close($curl_array[$i]); } curl_multi_close($mh); return $res; } function getExtention($type) { $type = strtolower($type); switch ($type) { case "image/gif": return ".gif"; break; case "image/png": return ".png"; break; case "image/jpeg": return ".jpg"; break; default: return ".img"; break; } } function startsWith($str, $prefix) { $temp = substr($str, 0, strlen($prefix)); $temp = strtolower($temp); $prefix = strtolower($prefix); return ($temp == $prefix); }</code>
이점:
위 내용은 ## 차원 임계값을 사용하여 URL에서 이미지를 효율적으로 가져오는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!