PHP Warning: filesize() [function.filesize]: stat failed for /... 오류
페이지 정보
본문
파일 사이즈를 알고자 하는 파일 이름이 한글이 포함된 경우
[ 변경전 ]
<?php
$hp_file = '/home/happyjung/www/data/한글.zip';
$file_size = filesize($hp_file); // line 131
echo $file_size;
?>
실행결과
Warning: filesize() [function.filesize]: stat failed for /home/happyjung/www/chang.php on line 131
[ 변경후 ]
<?php
$hp_file = '/home/happyjung/www/data/한글.zip';
// 서버 상태에 따라서 아래 2가지중 정상작동하는것을 사용
$hp_file = iconv('UTF-8', 'EUC-KR', $hp_file);
//$hp_file = iconv('UTF-8','CP949',$bf_file);
//$file_size = filesize($hp_file);
if (is_file($hp_file)) { // 파일이 있을때만
filesize($hp_file);
}
echo $file_size;
?>
실행결과
40960
참고자료
http://blog.jidolstar.com/821
https://blog.naver.com/pcgun70/220803571734
[ 변경전 ]
<?php
$hp_file = '/home/happyjung/www/data/한글.zip';
$file_size = filesize($hp_file); // line 131
echo $file_size;
?>
실행결과
Warning: filesize() [function.filesize]: stat failed for /home/happyjung/www/chang.php on line 131
[ 변경후 ]
<?php
$hp_file = '/home/happyjung/www/data/한글.zip';
// 서버 상태에 따라서 아래 2가지중 정상작동하는것을 사용
$hp_file = iconv('UTF-8', 'EUC-KR', $hp_file);
//$hp_file = iconv('UTF-8','CP949',$bf_file);
//$file_size = filesize($hp_file);
if (is_file($hp_file)) { // 파일이 있을때만
filesize($hp_file);
}
echo $file_size;
?>
실행결과
40960
참고자료
http://blog.jidolstar.com/821
https://blog.naver.com/pcgun70/220803571734
댓글목록
등록된 댓글이 없습니다.