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
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();
/
2 matches
Mail list logo