웹솔루션개발 22년 노하우! 해피CGI의 모든것

[해피CGI][cgimall] 외부에 있는 파일사이즈 알아보기 본문

웹프로그램밍 자료실/알짜자료 골드팁

[해피CGI][cgimall] 외부에 있는 파일사이즈 알아보기

해피CGI윤실장 2017. 4. 3. 09:20
해피CGI 윤영웅입니다.
아래 펑션을 이용해보세요. ^^


[프로그램코드]
<?php
function remotefilesize($file)
{
  // SETTINGS
  $max_file_size = "1000" // in bytes

  // Open the file, but only read maximum size
  $fp = fopen($file, "r");
  $first_file_size_read = fread($fp, $max_file_size);
  fclose($fp);

  // Open the file plus one byte...
  // if there is an extra byte, then it is too big,
  $fp = fopen("$image", "r");
  $second_file_size_read = fread($fp, $max_file_size + 1);
  fclose($fp);

  // Check if they're the same
  if ($first_file_size_read == $second_file_size_read)
  {
      $file_size_ok == "yes";
  }
}

?>

 

홈페이지바로가기 

Comments