Ben bir nesne var, hadi böyle diyelim:
class Foo {
var $b, $a, $r;
function __construct($B, $A, $R) {
$this->b = $B;
$this->a = $A;
$this->r = $R;
}
}
$f = new Foo(1, 2, 3);
Ben bir dizi olarak bu nesnenin özelliklerinin keyfi bir dilim almak istiyorum.
$desiredProperties = array('b', 'r');
$output = magicHere($foo, $desiredProperties);
print_r($output);
// array(
// "b" => 1,
// "r" => 3
// )