fork download
  1. <?php
  2.  
  3. $checkedResult = array();
  4.  
  5. if(empty($checkResult)){
  6. $checkedResult['newItem'] = 'new Value';
  7. }
  8.  
  9. print_r($checkedResult);
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [newItem] => new Value
)