Zend PHP 5

Bitte geben Sie einen Suchbegriff ein.
28.02.07 09:44 Alter: 3 yrs
01:021 Basic : reference
Rubrik: 01. PHP Basics
===example reference===
$a = 10;
$b = &$a;
$a = 20;
echo $b; // outputs 20
the example in the book is wrong
- Dateien:
21.phps