milardovich

Global PHP

Jun 19th, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2.     /*
  3.      * Usar variables globales dentro de una función
  4.      */
  5.     $var = 'foo';
  6.     function test(){
  7.         global $var;
  8.         echo $var;
  9.     }
  10.     test();
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment