Hey guys.
If I declare a static variable in a function like this:
PHP Code:
function()
{
static var[200] = { EOS }
var[0] = 'H'
}
Will every function call after the first call at the beginning of the function var's value will be:
{ EOS, EOS, EOS......., EOS }
or
{ 'H', EOS, EOS......., EOS }
?
__________________