RE: [PHP] unset Fuction

2004-02-10 Thread Oschlies Dirk (Praktikant FV/SLH)
Hello John, > From: JohnT [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 10, 2004 4:54 AM > > Hello, > > mind explain a little bit further cause i'm confused and not > sure if the > fuction really work or something > > [some Code] As far as I know (or understand), unset() will only destr

[PHP] unset Fuction

2004-02-10 Thread JohnT
Hello, mind explain a little bit further cause i'm confused and not sure if the fuction really work or something On 1st example using unset() in a function /// CODE / function foo() { static $a; $a++; echo "$a"; unset($a); } foo(); foo(); foo(); /