Guest User

Untitled

a guest
May 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. <?php
  2.  
  3. $array = array();
  4. echo @$array['invalid'];
  5. echo "\n";
  6.  
  7. if (isset($array, 'invalid')) {
  8. echo $array['invalid'];
  9. echo "\n";
  10. }
Add Comment
Please, Sign In to add comment