php $reflectionProperty = new ReflectionProperty('stdClass', 'foo'); $reflectionProperty->setAccessible(true); $reflectionProperty->setValue($obj, 'bar');
2025-04-10 18:53