芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/livewire/livewire/src/ObjectPrybar.php
obj = $obj; $this->reflected = new ReflectionClass($obj); } public function getProperty($name) { $property = $this->reflected->getProperty($name); $property->setAccessible(true); return $property->getValue($this->obj); } public function setProperty($name, $value) { $property = $this->reflected->getProperty($name); $property->setAccessible(true); $property->setValue($this->obj, $value); } }