Open GoogleCodeExporter opened 8 years ago
See
http://groups.google.com/group/php-form-builder-class/browse_thread/thread/3ec95
8eec90b69fc?hl=en
Original comment by ajporterfield@gmail.com
on 20 Jul 2011 at 1:05
had the same problem is resolved to the following way, using the
ReflectionClass class:
public function configure(array $properties = null) {
if(!empty($properties)) {
$class = get_class($this);
/*The property_reference lookup array is created so that properties can be set case-insensitively.*/
$reflection = new ReflectionClass($class);
$available = array_keys($reflection->getdefaultProperties());
//$available = array_keys(get_class_vars($class));
my configuration is:
- Windows 7
- Apache server 2.0
- Php 5.1.6
Thanks
Antonio Huaman
Original comment by listas....@gmail.com
on 6 May 2012 at 3:02
Original issue reported on code.google.com by
mirthca...@gmail.com
on 20 Jul 2011 at 6:49