Haifa linux club:PHP lecture
Prev Next


...PHP $Variables



considered FALSE:

boolean: FALSE
integer: 0
float: 0.0
string: empty string "", and the string "0"
array: 0 elements
object: 0 elements
NULL

C-style casting :
<? $bool true;
echo (int)
$bool?>
will output "1";

Type Juggling :
<?
$x 
"100";
$x++;
// $x is now 101
?>

Variable variables: (@#%^!!)
<?
$moo 
"xxx";
$a "moo";
$
$a "boo";

echo 
"variable \$a is '$a' and \$moo is '$moo'.<br>";

// will output: variable $a is 'moo' and $moo is 'boo';
?>




HOME