1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/reflection/tests/ReflectionObject_export_basic2.phpt
2009-04-08 16:08:58 +00:00

39 lines
589 B
PHP

--TEST--
ReflectionObject::export() : very basic test with dynamic properties
--FILE--
<?php
class Foo {
public $bar = 1;
}
$f = new foo;
$f->dynProp = 'hello';
$f->dynProp2 = 'hello again';
ReflectionObject::export($f);
?>
--EXPECTF--
Object of class [ <user> class Foo ] {
@@ %s 3-5
- Constants [0] {
}
- Static properties [0] {
}
- Static methods [0] {
}
- Properties [1] {
Property [ <default> public $bar ]
}
- Dynamic properties [2] {
Property [ <dynamic> public $dynProp ]
Property [ <dynamic> public $dynProp2 ]
}
- Methods [0] {
}
}