程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP get_class_methods函數用法

PHP get_class_methods函數用法

編輯:關於PHP編程

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() 使用的具體示例如下:

<?php
class myclass {
	// constructor
	function myclass() {
		return(true);
	}
	// method 1
	function myfunc1() {
		return(true);
	}
	// method 2
	function myfunc2() {
		return(true);
	}
}
$class_methods = get_class_methods('myclass');
// or
$class_methods = get_class_methods(new myclass());

foreach ($class_methods as $method_name) {
	echo $method_name,'<br />';
}

上例將輸出:

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 函數分析

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved