php属性u存在受保护或私有属性的修复程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php属性u存在受保护或私有属性的修复程序相关的知识,希望对你有一定的参考价值。
Comes in handy for php magic functions such as __get and __set. This behaviour is fixed in php 5.3. Returns true also for private and protected properties using a reflectionclass
private function _property_exists_safe($class,$prop) { $r = property_exists($class, $prop); if (!$r) { $x = new ReflectionClass($class); $r = $x->hasProperty($prop); } return $r; }
以上是关于php属性u存在受保护或私有属性的修复程序的主要内容,如果未能解决你的问题,请参考以下文章