Notice: Undefined offset: 1 in /home/ins/ad/phpn/t_exe.php on line 806
Notice: Uninitialized string offset: 0 in /home/ins/ad/phpn/ut_exe.php on line 826
Notice: Uninitialized string offset: 1 in /home/ins/ad/phpn/ut_exe.php on line 826
$section_tmp[0] = isset($section_tmp[0]) ? $section_tmp[0] : '';
$section_tmp[1] = isset($section_tmp[1]) ? $section_tmp[1] : ''
php 7로 업 후 나오는 메세지
찾아보니 배열 값이 없는데 사용하는 경우인데
$section_tmp[0] = isset($section_tmp[0]) ? $section_tmp[0] : '';
이렇게 isset 으로 배열 값이 있는지 확인해서 없는 경우
'' 널값으로 초기화 해주면 에러 메세지가 없어진다.
|