I'm using the reflection class in PHP, but I'm with no clues on how to get the values of the properties in the reflection instance. It is possible?
The code:
<?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";
}
?>
How can I get the propertie values inside the foreach loop?
Best Regards,
Another method is to use the getDefaultProperties() method, if you don't want to instantiate that class, eg.
Here's your full example reduced to what you're looking for...
Note: you can also use namespaces inside of that ReflectionClass. eg,
How about
ReflectionProperty::getValue
- Gets the properties value.In your case:
On a sidenote, since your object has only public members, you could just as well iterate it directly
or fetch them with
get_object_vars
into an array.