<?php
// foo.php
$ar = array('alice', 'bob') ;
 
function baz()
  {
  global $ar ;
  echo is_array($ar) ? 'True' : 'False' ;
  }
?>
<?php
// bar.php
include 'foo.php';
 
baz();
?>
<?php
// qux.php
require 'foo.php';
baz();
?>
hd/working_notes.txt · Last modified: 2012/01/13 16:40 by fgm
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki