View Single Post
  #3  
Old 08-16-2007, 12:15 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Very nice Zero!
_____________________________
Oh, and for arrays:

This code will not work:

PHP Code:
function onCreated() {
  
temp.= {01};
  
  switch(
temp.a) {
    case {
01}:
      echo(
"foo");
    break;
  }

But, this code will work
PHP Code:
function onCreated() {
  
temp.= {01};
  
  switch(@ 
temp.a) {
    case @{
01}:
      echo(
"foo");
    break;
  }

__________________