Arquivos
hhvm/hphp/test/quick/on_list_assign.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

14 linhas
201 B
PHP

<?php
class A {
public function foo() { }
public $bar0 = 0;
public $bar1 = 1;
}
$a = new A;
$b = array( 0 => 'A', 1 => 'B' );
list ($a->bar0, $a->bar1) = $b;
list ($a->foo(), $a->bar1) = $b;