Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:programming:php:php_notes [2007/01/23 22:45] – (old revision restored) 127.0.0.1 | docs:programming:php:php_notes [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 23: | Line 23: | ||
</ | </ | ||
+ | |||
+ | |||
+ | ===== $PHP_SELF ===== | ||
+ | $PHP_SELF is a variable which represents the currently executing script (the name of the file you are viewing/ | ||
===== Dynamic Variables ===== | ===== Dynamic Variables ===== | ||
Line 36: | Line 40: | ||
echo ${$var[1]}; | echo ${$var[1]}; | ||
</ | </ | ||
+ | |||
===== Objects ===== | ===== Objects ===== | ||
Line 62: | Line 67: | ||
} | } | ||
</ | </ | ||
- | More information is available at http://www.php.net/ | + | More information is available at: |
+ | * (PHP4) | ||
+ | * (PHP5) http:// | ||
+ | |||
+ | |||
+ | |||
+ | ===== list() ===== | ||
+ | list — Assign variables as if they were an array: | ||
+ | ==== Example 298 ==== | ||
+ | <code php> | ||
+ | <?php | ||
+ | |||
+ | $info = array(' | ||
+ | |||
+ | // Listing all the variables | ||
+ | list($drink, | ||
+ | echo " | ||
+ | |||
+ | // Listing some of them | ||
+ | list($drink, | ||
+ | echo " | ||
+ | |||
+ | // Or let's skip to only the third one | ||
+ | list( , , $power) = $info; | ||
+ | echo "I need $power!\n"; | ||
+ | |||
+ | ?> | ||
+ | </ | ||
+ | |||
+ | ==== Example 299 ==== | ||
+ | <code php> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | <?php | ||
+ | |||
+ | $result = mysql_query(" | ||
+ | while (list($id, $name, $salary) = mysql_fetch_row($result)) { | ||
+ | echo " < | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | |||
+ | ?> | ||
+ | |||
+ | </ | ||
+ | </ | ||
===== break n ===== | ===== break n ===== | ||
Line 95: | Line 150: | ||
It may be easier to write them using the second method if you have intermixed code and HTML. | It may be easier to write them using the second method if you have intermixed code and HTML. | ||
</ | </ | ||
+ | |||
===== => and -> symbols ===== | ===== => and -> symbols ===== | ||
* use < | * use < | ||
* foreach($array as $key< | * foreach($array as $key< | ||
- | * to assign values to associative arrays, use the = sign | + | * to assign values to associative arrays |
+ | $foo = array( | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | ); | ||
+ | </ | ||
+ | * to assign values to associative arrays (line by line), use the = sign | ||
* $array[item1] = " | * $array[item1] = " | ||
* $array[item2] = " | * $array[item2] = " | ||
Line 105: | Line 168: | ||
* $this< | * $this< | ||
* $this< | * $this< | ||
+ | |||
+ | |||
+ | |||
+ | ===== 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 | ||
+ | </ | ||
+ | |||
===== testing for string equality ===== | ===== testing for string equality ===== | ||
< | < | ||
+ | // 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, | if(strcasecmp($var, | ||
// do something | // do something | ||
Line 124: | 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 " | * 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 " | ||
+ | |||
+ | ===== require/ | ||
+ | * 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) | ||
+ |