그누보드 [php 7.x] Warning: count(): Parameter must be an array or an object that implements Countable in
페이지 정보
본문
Warning: count(): Parameter must be an array or an object that implements Countable in /home/happyjung/www/skin/board/hp5_html11/list.skin.php on line 81
php 7.x 에서 발생하는 문제입니다.
수정전
$v_img_count = count($row_file['bf_file']);
수정후
if (is_array($row_file['bf_file']) ) {
if ($row_file['bf_file'] > count($row_file['bf_file'])) {
$v_img_count = count($row_file['bf_file']);
}
}
관련자료
https://github.com/Automattic/jetpack/issues/8420
php 7.x 에서 발생하는 문제입니다.
수정전
$v_img_count = count($row_file['bf_file']);
수정후
if (is_array($row_file['bf_file']) ) {
if ($row_file['bf_file'] > count($row_file['bf_file'])) {
$v_img_count = count($row_file['bf_file']);
}
}
관련자료
https://github.com/Automattic/jetpack/issues/8420
댓글목록
등록된 댓글이 없습니다.