位置: 编程技术 - 正文
推荐整理分享PHP:class_uses()的用法_spl函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 5 >= 5.4.0)
class_uses — Return the traits used by the given class
说明 array class_uses ( mixed $class [, bool $autoload = true ] )This function returns an array with the names of the traits that the given class uses. This does however not include any traits used by a parent class.
参数class
An object (class instance) or a string (class name).
autoloadWhether to allow this function to load the class automatically through the __autoload() magic method.
返回值An array on success, or FALSE on error.
范例
Example #1 class_uses() example
<?phptraitfoo{}classbar{usefoo;}print_r(class_uses(newbar));print_r(class_uses('bar'));function__autoload($class_name){require_once$class_name.'.php';}//use__autoloadtoloadthe'not_loaded'classprint_r(class_uses('not_loaded',true));?>以上例程的输出类似于:
参见class_parents() - 返回指定类的父类。 get_declared_traits() - 返回所有已定义的 traits 的数组
PHP:class_implements()的用法_spl函数 class_implements(PHP5=5.1.0)class_implements返回指定的类实现的所有接口。说明arrayclass_implements(mixed$class[,bool$autoload])本函数返回一个数组,该数组中包含了指定
PHP:uniqid()的用法_misc函数 uniqid(PHP4,PHP5)uniqid生成一个唯一ID说明stringuniqid([string$prefix=[,bool$more_entropy=false]])获取一个带前缀、基于当前时间微秒数的唯一ID。参数prefix有用的参数。
PHP:unpack()的用法_misc函数 unpack(PHP4,PHP5)unpackUnpackdatafrombinarystring说明arrayunpack(string$format,string$data)Unpacksfromabinarystringintoanarrayaccordingtothegivenformat.Theunpackeddataisstoredinanassociativearray.To
友情链接: 武汉网站建设