<?php class Test { var $_foo = null; function Test() { } function run() { list($foo, $bar) = $this->_foo = $this->get(); var_dump($this->_foo); var_dump($foo); var_dump($bar); } function get() { return array('foo', 'bar'); } } $test = new Test(); $test->run();
You have javascript disabled. You will not be able to edit any code.