23 lines
181 B
PHP
23 lines
181 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$foo = 3;
|
||
|
|
|
||
|
|
if ($foo == 2)
|
||
|
|
//do something
|
||
|
|
|
||
|
|
if ($foo == 3)
|
||
|
|
//do something
|
||
|
|
else
|
||
|
|
//do something else
|
||
|
|
|
||
|
|
if ($foo != 0)
|
||
|
|
{
|
||
|
|
//do something
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
//do another thing
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|