Advertisement
wzul

GetAllGlobalVariable.php

Mar 2nd, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.12 KB | None | 0 0
  1. <?php
  2.  
  3. $aa = 'aa';
  4. $bb = 'bb';
  5.  
  6. function aa(){
  7.     foreach ($GLOBALS as $key => $value){
  8.         echo $key;
  9.     }
  10. }
  11.  
  12. aa();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement