docs:programming:php:php_notes

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:programming:php:php_notes [2007/03/23 14:13] billhdocs:programming:php:php_notes [2008/08/03 00:25] (current) – external edit 127.0.0.1
Line 23: Line 23:
 </code> </code>
  
 +
 +
 +===== $PHP_SELF =====
 +$PHP_SELF is a variable which represents the currently executing script (the name of the file you are viewing/running).
  
 ===== Dynamic Variables ===== ===== Dynamic Variables =====
Line 36: Line 40:
  echo ${$var[1]};  // array example  echo ${$var[1]};  // array example
 </code> </code>
 +
  
 ===== Objects ===== ===== Objects =====
Line 62: Line 67:
 } }
 </code> </code>
-More information is available at http://www.php.net/oop+More information is available at
 +  * (PHP4) http://us3.php.net/manual/en/language.oop.php 
 +  * (PHP5) http://us3.php.net/manual/en/language.oop5.php
  
  
Line 161: Line 168:
     * $this<html>&#045;&gt;</html>functionName()     * $this<html>&#045;&gt;</html>functionName()
     * $this<html>&#045;&gt;</html>variableName     * $this<html>&#045;&gt;</html>variableName
 +
 +
 +
 +===== testing for variable existence =====
 +<code php>
 +// note - a variable could be set, but set with no value
 +if(isset($var))
 +  // do something
 +
 +// is the variable set and not empty
 +if(!empty($var))
 +  // do something
 +
 +// using the variable name as a test is the same as !empty
 +if($var)
 +  // do something
 +</code>
 +
  
 ===== testing for string equality ===== ===== testing for string equality =====
 <code> <code>
 +// use this when testing for simple string equality
 +if($var == "match string")
 +  // do something
 +
 +// three equals (===) check for equality of value and type
 +// i.e. 0.0 == 0 (true)
 +// i.e. 0.0 === 0 (false)
 +if($var === "match string")
 +  // do something
 +
 +// strcasecmp and strcmp will return higher, lower or zero depending
 +// if the match string is considered higher, lower or equal
 if(strcasecmp($var, "match string")==0) if(strcasecmp($var, "match string")==0)
   // do something   // do something
Line 180: Line 217:
 ===== accessing class members from another function ===== ===== accessing class members from another function =====
   * if you add a normal function in a file after a class has been defined, and you want to access the members of the class within the normal function, you need to declare the class as "global" first   * if you add a normal function in a file after a class has been defined, and you want to access the members of the class within the normal function, you need to declare the class as "global" first
 +
 +===== require/include =====
 +  * if you use require or include, make sure to use a relative or full path to avoid duplicating a filename already in the php include path (such as DB.php)
 +
  • docs/programming/php/php_notes.1174680806.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)