$undefined; $null = null; $empty = ''; $space = ' '; $value = 'value'; $empty_array = array(); $array = array(); $array[0] = '';
isset($undefined):
isset($null):
isset($empty): 1
isset($space): 1
isset($value): 1
isset($empty_array): 1
isset($array): 1
$undefined == true:
$null == true:
$empty == true:
$space == true: 1
$value == true: 1
$empty_array == true:
$array == true: 1
$undefined == null: 1
explode(',', 'ab'): Array
explode(',', 'ab, cd'): Array
Array/안녕이들어있어요/Array ( [0] => 하세요 [1] => 반갑 [2] => 습니다 ) 1a/b
[{"item_bo_table":"a","item_wr_id":"1"},{"item_bo_table":"c","item_wr_id":"3"}]Array ( [0] => Array ( [item_bo_table] => a [item_wr_id] => 1 ) [1] => Array ( [item_bo_table] => c [item_wr_id] => 3 ) ) 1