Control Statement Variable
Posted: Fri Jan 08, 2010 4:39 am
My question is based upon the following code. In the if-else statement, if $b= $e, does $b in the if section of the control statement now contain the value of $e?
Code: Select all
do {
$a = $this->function($c);
if (array_key_exists('String', $d)) {
$a = $b
} else {
$b = $e
}
} while ($f <= $g);