<?php class Foo { private $foo; private $bar; private function __construct($foo, $bar){ $this->foo = $foo; $this->bar = $bar; } public function getFoo() { return $this->foo; } public function getBar() { return $this->bar; } } $args = array('eggs','bacon'); $class = 'Foo'; $reflClass = new \ReflectionClass($class); $instance = call_user_func(\Closure::bind(function () use ($args) { return new static(...$args); }, $reflClass->newInstanceWithoutConstructor(), $class)); echo $instance->getFoo();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`