You are currently viewing PHP: Display all functions and classes within a PHP extension by extension name

PHP: Display all functions and classes within a PHP extension by extension name

  • Post category:PHP
  • Post comments:0 Comments
$extension_name = 'dom';

$extension = new ReflectionExtension($extension_name);
print_r($extension->getFunctions());
print_r($extension->getClassNames());