A
Anonymous
Guest
if I declare a function can I undeclare it later, so I can declare another function under that name??
It should look a something like this:
this would produce this:
Greetz Daan
It should look a something like this:
Code:
function do_something()
{
$a = 1;
return $a;
}
print(do_something());
undeclare('do_something');
function do_something()
{
$b = 6;
return $b;
}
print(do_something());
Greetz Daan