Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Расшифруйте это как получилось class@anonymous Object ( [title] => Hello world! )
- <?php ## Использование анонимных классов
- class Dumper
- {
- public static function print($obj)
- {
- print_r($obj);
- }
- }
- Dumper::print( new class {
- public $title;
- public function __construct(){
- $this->title = "Hello world!";
- }
- });
- ?>
Advertisement
Add Comment
Please, Sign In to add comment