getimagesize 속도가 느려지는 또는 느린 경우
getimagesize(URL) 로 사용하는 경우 느려질 수 있다.
<?php
$size = getimagesize("http://www.example.com/gifs/logo.gif");
// if the file name has space in it, encode it properly
$size = getimagesize("http://www.example.com/gifs/lo%20go.gif");
?> 엄청나게 느려짐... ㅠㅠ
아마도 DNS 와 관련이 있는것으로 보임.
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기
댓글 5개