Guest
Public paste!

Untitled

By: a guest | Mar 4th, 2010 | Syntax: None | Size: 0.12 KB | Hits: 176 | Expires: Never
Copy text to clipboard
  1. $foo = ['one', 'two']
  2. # $bar = ['one', 'two'] += ['three'] # syntax error
  3. class foo {
  4.         $foo += ['three'] # works
  5. }