[PHP] 배열 초기화 하기
unset('삭제할 배열');
사용예제
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?php $test = array( 0 => array("id"=>"1", "name"=>"Mike", "num"=>"3321"), 1 => array("id"=>"2", "name"=>"test", "num"=>"3123") ); foreach ($test as $key => $value) { foreach ($value as $keys => $values) { echo $keys." ".$values."<BR>"; } } unset( $test ); if($test == null){ echo "no arr"; } ?> | cs |
출력값
id 1
name Mikenum 3321
id 2
name test
num 3123
no arr
'공부하자 > PHP' 카테고리의 다른 글
카카오 error="invalid_grant", error_description="Invalid redirect: (0) | 2019.01.16 |
---|---|
[PHP] 날짜 더하기 (1) | 2019.01.14 |
[PHP] 함수 만들기 (0) | 2019.01.09 |
[PHP] 랜덤 난수 생성하기 (2) | 2019.01.09 |
[PHP] 배열 중복값 개수 확인하기 (0) | 2019.01.09 |