<?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: 2007/12/22 15:45 (external edit)
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki