C style blocks
Posted: Wed Sep 01, 2004 11:27 pm
Is there any way to have the C style blocks ?
The output of this
55
instead I want it to be
5
Notice: Undefined variable: a in xxx.php on line xx
I want this to free some memory after usage in a block.
Code: Select all
<?php
{
$a=5;
echo $a;
}
echo $a;
?>55
instead I want it to be
5
Notice: Undefined variable: a in xxx.php on line xx
I want this to free some memory after usage in a block.