framework icon indicating copy to clipboard operation
framework copied to clipboard

修复在PHP8.5下异常报错

Open 9007967 opened this issue 2 months ago • 0 comments

修复在PHP8.5下异常报错 Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect PHP 8.1 及之后,PHP 引入了属性访问的新机制,反射访问私有属性不再需要通过 setAccessible(true) 开启,该方法的调用变得多余,因此在 PHP 8.5 中被正式弃用。 通过版本判断兼容版本低于PHP8.1的使用环境。

9007967 avatar Oct 26 '25 04:10 9007967