PHP 类相关函数的使用详解

2015-01-24信息快讯网

本篇文章是对PHP类的相关函数的使用进行了分析介绍。需要的朋友参考下

bool class_alias ( string $original , string $alias [, bool $autoload = TRUE ] ) ― 为一个类创建别名
bool class_exists ( string $class_name [, bool $autoload ] )― 检查类是否已定义
string get_called_class ( void ) ―获取静态方法调用的类名

class foo {
    static public function test(){
        var_dump(get_called_class());
    }
}
class bar extends foo {}
foo::test();
bar::test();

array get_class_methods ( mixed $class_name )― 返回由类的方法名组成的数组
array get_class_vars ( string $class_name )― 返回由类的默认属性组成的数组
string get_class ([ object $obj ] )― 返回对象的类名
array get_declared_classes ( void )― 返回当前脚本中已定义类的名字组成的数组
array get_declared_interfaces ( void )― 返回当前脚本中所有已声明的接口的名字数组
array get_object_vars ( object $obj )― 返回由对象属性组成的关联数组
string get_parent_class ([ mixed $obj ] )― 返回对象或类的父类名
bool interface_exists ( string $interface_name [, bool $autoload ] )― 检查接口是否已被定义
bool is_a ( object $object , string $class_name )― 如果对象属于该类或该类是此对象的父类则返回 TRUE
bool is_subclass_of ( object $object , string $class_name )― 检测对象是该类的子类实例化得到的
bool method_exists ( object $object , string $method_name )― 检查类的方法是否存在
bool property_exists ( mixed $class , string $property ) ― 检查对象或类是否具有该属性

php class类的用法详细总结
PHP字符串长度计算 - strlen()函数使用介绍
php mysql_real_escape_string函数用法与实例教程
php中利用str_pad函数生成数字递增形式的产品编号
Zend studio文件注释模板设置方法
php stream_get_meta_data返回值
PHP加密函数 Javascript/Js 解密函数
PHP和JavaScrip分别获取关联数组的键值示例代码
PHP中的str_repeat函数在JavaScript中的实现
php中的Base62类(适用于数值转字符串)
实测在class的function中include的文件中非php的global全局环境
PHP Class&Object -- 解析PHP实现二叉树
PHP Class&Object -- PHP 自排序二叉树的深入解析
解析php addslashes()与addclashes()函数的区别和比较
php class中public,private,protected的区别以及实例分析
PHP 自定义错误处理函数的使用详解
解析PHP缓存函数的使用说明
php启动时候提示PHP startup的解决方法
Zend的Registry机制的使用说明
php中使用$_REQUEST需要注意的一个问题
php笔记之:php函数range() round()和list()的使用说明
php class中self,parent,this的区别以及实例介绍
『PHP』PHP截断函数mb_substr()使用介绍
做了CDN获取用户真实IP的函数代码(PHP与Asp设置方式)
php中使用addslashes函数报错问题的解决方法
PHP/Javascript/CSS/jQuery常用知识大全详细整理第1/2页
php和javascript之间变量的传递实现代码
深入了解PHP类Class的概念
Trying to clone an uncloneable object of class Imagic的解决方法
提示Trying to clone an uncloneable object of class Imagic的解决
©2014-2024 dbsqp.com