jQuery调用WebMethod(PageMethod) NET2.0的方法
404
2024-03-07
(PHP 5 >= 5.1.0)
class_implements — 返回指定的类实现的所有接口。
$class
[, bool $autoload
] )
本函数返回一个数组,该数组中包含了指定类class
及其父类所实现的所有接口的名称。
class
对象(类实例)或字符串(类名称)。
autoload
是否允许使用__autoload
魔术函数来自动装载该类。默认值为TRUE
。
调用成功则返回一个数组,否则返回FALSE
。
版本
说明
5.1.0
增加了允许参数class
为字符串的选项。增加了autoload
参数。
Example #1 class_implements() example
<?php
interface foo { }
class bar implements foo {}
print_r(class_implements(new bar));
// since PHP 5.1.0 you may also specify the parameter as a string
print_r(class_implements('bar'));
function __autoload($class_name) {
require_once $class_name . '.php';
}
// use __autoload to load the 'not_loaded' class
print_r(class_implements('not_loaded', true));
?>
以上例程的输出类似于:
Array ( [foo] => foo ) Array ( [interface_of_not_loaded] => interface_of_not_loaded )
class_parents() - 返回指定类的父类。 get_declared_interfaces() - 返回一个数组包含所有已声明的接口
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!