我在PHP中使用反射類,但我沒有關於如何獲得反射實例中的屬性值的線索。有可能的?PHP反射類。如何獲取屬性的值?
代碼:
<?php
class teste {
public $name;
public $age;
}
$t = new teste();
$t->name = 'John';
$t->age = '23';
$api = new ReflectionClass($t);
foreach($api->getProperties() as $propertie)
{
print $propertie->getName() . "\n";
}
?>
我怎樣才能獲得的foreach循環內的propertie值?
最好的問候,
非常感謝,它的工作!最好的祝福, – 2011-02-14 17:51:07