get_class_methods()
get_class_methods( クラスまたはオブジェクト );
<?php class Sampclass { function myMethod1() { } function myMethod2() { } function myMethod3() { } } $value = get_class_methods("Sampclass"); print_r($value);
サンプルスクリプトの実行結果
PageTop / Home / PHP入門 / リファレンス目次