Curl을 사용하여 대용량 파일 다운로드: 메모리로 읽는 대안
질문: Curl을 사용하여 대용량 파일을 다운로드할 때 메모리 제약을 어떻게 극복할 수 있습니까? 컬은 일반적으로 메모리로 읽어 들이나요?
이 문제는 파일 크기가 컬의 크기를 초과하는 상황에서 발생합니다. 서버에서 사용 가능한 메모리. 보다 효율적인 접근 방식은 메모리를 완전히 우회하여 파일을 디스크에 직접 스트리밍하는 것입니다.
답변:
<?php set_time_limit(0); // Set the path to the target file $fp = fopen(dirname(__FILE__) . '/localfile.tmp', 'w+'); // Exchange spaces with %20 to ensure compatibility with URLs $ch = curl_init(str_replace(" ", "%20", $url)); // Extend the timeout value to accommodate large files curl_setopt($ch, CURLOPT_TIMEOUT, 600); // Directs curl to write response to file curl_setopt($ch, CURLOPT_FILE, $fp); // Automatically follows redirects curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // Send request and receive response curl_exec($ch); curl_close($ch); fclose($fp); ?>
이 코드에서 다음 수정 사항이 핵심입니다.
위 내용은 메모리 제한을 초과하지 않고 Curl을 사용하여 대용량 파일을 다운로드하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!