Sayfalar

8 Temmuz 2010 Perşembe

php Bileşik Atama

$a=20;
$y=5;
$a +=$y;
$a -=$y;
$a*=$y;
$a/=$y;
$a&=$y;

echo $a;
?>