Help for this page

Select Code to Download


  1. or download this
    $temp = defined($temp = &func()) ? $temp : 'undefined';
    
  2. or download this
    $temp1 = &func();
    $temp2 = defined($temp1) ? $temp1 : 'undefined';
    
  3. or download this
    $temp = defined(&func()) ? $func() : 'undefined';