PHP Warning : trim() expects parameter 1 to be string, array given in
오류는 trim() 안에 넣는 변수가 빈값이거나 없는 값일 때 주로 나타남.
if문 조건 안에서 trim()을 사용하여 null or 공백 비교 시 먼저 값이 있는지 먼저 체크해야 함.
예시)
if(trim($string) == ""){
// Bad;
}
if(isset($string)){
if(trim($string) == ""){
// Good;
}
}
'Language > PHP' 카테고리의 다른 글
PHP Warning: extract() expects parameter 1 to be array, null given in (0) | 2020.04.01 |
---|---|
[PHP] array_map 함수에서 mysqli 사용방법 (0) | 2020.03.19 |
[Deprecated] while(list($key, $value) = each($array)) 대체 (0) | 2020.03.11 |
[Deprecated] ereg() , eregi() 대체 (0) | 2020.03.10 |
[Deprecated] ereg_replace , eregi_replace() 대체 (0) | 2020.03.10 |