get_class_methods
(PHP 4, PHP 5)
get_class_methods -- クラスメソッドの名前を取得する
説明
array
get_class_methods ( mixed class_name )
クラスメソッドの名前を取得します。
パラメータ
class_name
オブジェクトのインスタンスのクラス名。
返り値
この関数は、指定したクラス class_name
についてメソッドの名前を配列として返します。
エラー時には NULL を返します。
例
例 1. get_class_methods() の例
<?php
class myclass { // コンストラクタ function myclass() { return(true); }
// メソッド1 function myfunc1() { return(true); }
// メソッド2 function myfunc2() { return(true); } }
$class_methods = get_class_methods('myclass'); // あるいは $class_methods = get_class_methods(new myclass());
foreach ($class_methods as $method_name) { echo "$method_name\n"; }
?>
|
上の例の出力は以下となります。 |