503f75d08b
These names don't make sense now that we run both suites the same way.
14 linhas
201 B
PHP
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;
|
|
|