PHP Kontrollstrukturen: Subroutinen und call-by-reference oder call-by-value für Parameter
Call by reference mit &$intzahl2
ByVal Zahl 1 vor Prozedur: 1
ByRef Zahl 2 vor Prozedur: 2
ByVal Zahl 1 in Prozedur: 10
ByRef Zahl 2 in Prozedur: 20
ByVal Zahl 1 nach Prozedur: 1
ByRef Zahl 2 nach Prozedur: 20
Zurück zur Liste mit PHP-Beispielen auf www.ecotronics.ch