User Tools

Site Tools


hd:working_notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
hd:working_notes [2007/12/22 14:45] – external edit 127.0.0.1hd:working_notes [2020/11/23 17:23] (current) – external edit 127.0.0.1
Line 1: Line 1:
  
   * per-user settings can be stored in a more or less standard way using hook_user and/or user_save   * per-user settings can be stored in a more or less standard way using hook_user and/or user_save
- 
   * something strange in PHP. It seems that global arrays defined in an INCLUDED files are local to the included file and their range disappears in the including file:   * something strange in PHP. It seems that global arrays defined in an INCLUDED files are local to the included file and their range disappears in the including file:
  
-<php>+<code php>
 <?php <?php
 // foo.php // foo.php
- 
 $ar = array('alice', 'bob') ; $ar = array('alice', 'bob') ;
  
Line 16: Line 14:
   }   }
 ?> ?>
-</php>+</code>
  
-<php>+<code php>
 <?php <?php
 // bar.php // bar.php
Line 25: Line 23:
 baz(); baz();
 ?> ?>
-</php>+</code>
  
-<php>+<code php>
 <?php <?php
 // qux.php // qux.php
 require 'foo.php'; require 'foo.php';
- 
 baz(); baz();
 ?> ?>
-</php>+</code>
  
   * qux.php displays True as expected.   * qux.php displays True as expected.
Line 40: Line 37:
   * bug, feature, or test error ?   * bug, feature, or test error ?
   * Tested with PHP 5.0.4   * Tested with PHP 5.0.4
- 
hd/working_notes.1198334720.txt.gz · Last modified: 2020/11/23 17:23 (external edit)