PHP를 사용하여 URL에서 서버로 이미지 복사
질문:
어떻게 만들 수 있나요? 지정된 URL에서 이미지를 다운로드하고 777 권한으로 내 서버에 직접 저장하는 PHP 코드는 무엇입니까?
답변:
옵션 1(PHP5 이상) ):
copy() 함수 사용:
<code class="php">copy('http://www.google.co.in/intl/en_com/images/srpr/logo1w.png', '/tmp/file.png');</code>
옵션 2(PHP4 이하):
file_get_contents 사용( )를 사용하여 이미지를 검색하고 fopen() 및 fwrite()를 사용하여 이미지를 저장합니다.
<code class="php">// Get the image $content = file_get_contents("http://www.google.co.in/intl/en_com/images/srpr/logo1w.png"); // Save the image $fp = fopen("/location/to/save/image.png", "w"); fwrite($fp, $content); fclose($fp);</code>
참고: 다운로드한 이미지에 대해 777 권한을 설정하려면 다음에 chmod() 함수를 사용하세요. 다운로드:
<code class="php">chmod("/tmp/file.png", 0777); // or chmod("/location/to/save/image.png", 0777)</code>
위 내용은 Copy 또는 file_get_contents를 사용하여 PHP를 사용하여 URL에서 서버로 이미지를 다운로드하고 저장하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!