Che significa?
Esercizio per la certificazione Zend.
che valore ha $j? 256! Ma perché? che significa esattamente?Codice PHP:
$a = 10;
$b = 20;
$c = 4;
$d = 8;
$e = 1.0;
$f = $c + $d * 2;
$g = $f % 20;
$h = $b - $a + $c + 2;
$i = $h << $c;
$j = $i * $e;
nel manuale php ho trovato
$a << $b Shift left Shift the bits of $a $b steps to the left (each step means "multiply by two")
![]()