array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.get-class-methods.php', 1 => 'get_class_methods', 2 => 'Gets the class methods\' names', ), 'up' => array ( 0 => 'ref.classobj.php', 1 => 'Функції Класів чи Об\'єктів', ), 'prev' => array ( 0 => 'function.get-class.php', 1 => 'get_class', ), 'next' => array ( 0 => 'function.get-class-vars.php', 1 => 'get_class_vars', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/classobj/functions/get-class-methods.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4, PHP 5, PHP 7, PHP 8)
get_class_methods — Gets the class methods' names
object_or_classThe class name or an object instance
Returns an array of method names defined for the class specified by
object_or_class.
| Версія | Опис |
|---|---|
| 8.0.0 |
The object_or_class parameter now only accepts objects or valid class names.
|
Приклад #1 get_class_methods() example
<?php
class myclass {
// constructor
function __construct()
{
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\n";
}
?>Поданий вище приклад виведе:
__construct myfunc1 myfunc2