<?php class A { protected $var; public function setVar(string $var) { $this->var = $var; } } $reflection = new ReflectionClass('A'); $property = $reflection->getProperty('var'); $property->setAccessible(true); $classA = new A(); $classA->setVar('howdy, partner'); var_dump($property->getValue($classA));
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`