PHP get_class_methods函数用法_PHP教程

WBOY
Release: 2016-07-13 10:15:05
Original
1139 people have browsed it

PHP get_class_methods函数用法

get_class_methods 函数的作用是返回由类的方法名组成的数组。本篇文章将简要的分享一下该函数的相关用法。

函数原型 array get_class_methods ( mixed $class_name )

返回由 class_name 指定的类中定义的方法名所组成的数组。如果出错,则返回 NULL。

注意: 从 PHP 4.0.6 开始,可以指定对象本身来代替 class_name。get_class_methods() 使用的具体示例如下:

'; }
Copy after login

上例将输出:

myclass
myfunc1
myfunc2

注意:

自 PHP 5 起,本函数按照方法被定义的名字返回(区分大小写)。在 PHP 4 中总是返回小写的。

您可能感兴趣的文章

  • php利用session_set_save_handler()函数将session保存到MySQL数据库中
  • php get_headers函数的作用及用法
  • php 模拟get_headers函数
  • PHP中file_get_contents于curl性能效率比较
  • phpMyAdmin Cannot start session without errors错误解决办法
  • php get_headers 判断URL是否有效
  • 获取子class_id集合的函数
  • php mktime 函数分析

www.bkjia.com true http://www.bkjia.com/PHPjc/906826.html TechArticle PHP get_class_methods函数用法 get_class_methods 函数的作用是返回由类的方法名组成的数组。本篇文章将简要的分享一下该函数的相关用法。 函数...
Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!