Skip to content

Instantly share code, notes, and snippets.

@michaelcontento
Created December 7, 2012 13:36
Show Gist options
  • Save michaelcontento/4233319 to your computer and use it in GitHub Desktop.
Save michaelcontento/4233319 to your computer and use it in GitHub Desktop.
PHP list() example
<?php
class A
{
public $foo = "foo";
}
$a = new A();
list($a->foo, $b) = array("tolle", "wurst");
print $a->foo;
print $b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment