位置: 编程技术 - 正文
推荐整理分享PHP:class_parents()的用法_spl函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 5 >= 5.1.0)
class_parents — 返回指定类的父类。
说明 array class_parents ( mixed $class [, bool $autoload ] )本函数返回一个包含了指定类class父类名称的数组。
参数class
对象(类实例)或字符串(类名称)。
autoload是否允许使用__autoload 魔术函数来自动装载该类。默认值为TRUE。
返回值调用成功则返回一个数组,否则返回FALSE。
更新日志版本 说明 5.1.0 增加了允许参数class为字符串的选项。增加了autoload参数。
范例
Example #1 class_parents() example
<?phpclassfoo{}classbarextendsfoo{}print_r(class_parents(newbar));//sincePHP5.1.0youmayalsospecifytheparameterasastringprint_r(class_parents('bar'));function__autoload($class_name){require_once$class_name.'.php';}//use__autoloadtoloadthe'not_loaded'classprint_r(class_parents('not_loaded',true));?>以上例程的输出类似于:
参见class_implements() - 返回指定的类实现的所有接口。
PHP:iterator_count()的用法_spl函数 iterator_count(PHP5=5.1.0)iterator_count计算迭代器中元素的个数说明intiterator_count(Traversable$iterator)计算迭代器中的元素个数。参数iterator要计数的迭代器。返回
PHP:class_uses()的用法_spl函数 class_uses(PHP5=5.4.0)class_usesReturnthetraitsusedbythegivenclass说明arrayclass_uses(mixed$class[,bool$autoload=true])Thisfunctionreturnsanarraywiththenamesofthetraitsthatthegivenclassuses.Thisdoes
PHP:class_implements()的用法_spl函数 class_implements(PHP5=5.1.0)class_implements返回指定的类实现的所有接口。说明arrayclass_implements(mixed$class[,bool$autoload])本函数返回一个数组,该数组中包含了指定
标签: PHP:class_parents()的用法_spl函数
本文链接地址:https://www.jiuchutong.com/biancheng/280616.html 转载请保留说明!友情链接: 武汉网站建设