Very nice Zero!

_____________________________
Oh, and for arrays:
This code will not work:
PHP Code:
function onCreated() {
temp.a = {0, 1};
switch(temp.a) {
case {0, 1}:
echo("foo");
break;
}
}
But, this code will work
PHP Code:
function onCreated() {
temp.a = {0, 1};
switch(@ temp.a) {
case @{0, 1}:
echo("foo");
break;
}
}