Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

simplexmliterator(3) [php man page]

SIMPLEXMLITERATOR(3)							 1						      SIMPLEXMLITERATOR(3)

The SimpleXMLIterator class

INTRODUCTION
The SimpleXMLIterator provides recursive iteration over all nodes of a SimpleXMLElement object. CLASS SYNOPSIS
SimpleXMLIterator SimpleXMLIteratorextends SimpleXMLElementRecursiveIteratorCountable Methods o public mixed SimpleXMLIterator::current (void ) o public SimpleXMLIterator SimpleXMLIterator::getChildren (void ) o public bool SimpleXMLIterator::hasChildren (void ) o public mixed SimpleXMLIterator::key (void ) o public void SimpleXMLIterator::next (void ) o public void SimpleXMLIterator::rewind (void ) o public bool SimpleXMLIterator::valid (void ) Inherited methods o finalpublic SimpleXMLElement::__construct (string $data, [int $options], [bool $data_is_url = false], [string $ns = ""], [bool $is_prefix = false]) o public void SimpleXMLElement::addAttribute (string $name, [string $value], [string $namespace]) o public SimpleXMLElement SimpleXMLElement::addChild (string $name, [string $value], [string $namespace]) o public mixed SimpleXMLElement::asXML ([string $filename]) o public SimpleXMLElement SimpleXMLElement::attributes NULL ([string $ns], [bool $is_prefix = false]) o public SimpleXMLElement SimpleXMLElement::children ([string $ns], [bool $is_prefix = false]) o public int SimpleXMLElement::count (void ) o public array SimpleXMLElement::getDocNamespaces ([bool $recursive = false], [bool $from_root = true]) o public string SimpleXMLElement::getName (void ) o public array SimpleXMLElement::getNamespaces ([bool $recursive = false]) o public bool SimpleXMLElement::registerXPathNamespace (string $prefix, string $ns) o public string SimpleXMLElement::__toString (void ) o public array SimpleXMLElement::xpath (string $path) PHP Documentation Group SIMPLEXMLITERATOR(3)

Check Out this Related Man Page

REFLECTIONFUNCTION(3)							 1						     REFLECTIONFUNCTION(3)

The ReflectionFunction class

INTRODUCTION
The ReflectionFunction class reports information about a function. CLASS SYNOPSIS
ReflectionFunction ReflectionFunctionextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionFunction::IS_DEPRECATED262144 Properties o public$name Methods o public ReflectionFunction::__construct (mixed $name) o publicstatic string ReflectionFunction::export (string $name, [string $return]) o public Closure ReflectionFunction::getClosure (void ) o public mixed ReflectionFunction::invoke ([mixed $parameter], [mixed $...]) o public mixed ReflectionFunction::invokeArgs (array $args) o public bool ReflectionFunction::isDisabled (void ) o public string ReflectionFunction::__toString (void ) Inherited methods o finalprivate void ReflectionFunctionAbstract::__clone (void ) o public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass (void ) o public object ReflectionFunctionAbstract::getClosureThis (void ) o public string ReflectionFunctionAbstract::getDocComment (void ) o public int ReflectionFunctionAbstract::getEndLine (void ) o public ReflectionExtension ReflectionFunctionAbstract::getExtension (void ) o public string ReflectionFunctionAbstract::getExtensionName (void ) o public string ReflectionFunctionAbstract::getFileName (void ) o public string ReflectionFunctionAbstract::getName (void ) o public string ReflectionFunctionAbstract::getNamespaceName (void ) o public int ReflectionFunctionAbstract::getNumberOfParameters (void ) o public int ReflectionFunctionAbstract::getNumberOfRequiredParameters (void ) o public array ReflectionFunctionAbstract::getParameters (void ) o public string ReflectionFunctionAbstract::getShortName (void ) o public int ReflectionFunctionAbstract::getStartLine (void ) o public array ReflectionFunctionAbstract::getStaticVariables (void ) o public bool ReflectionFunctionAbstract::inNamespace (void ) o public bool ReflectionFunctionAbstract::isClosure (void ) o public bool ReflectionFunctionAbstract::isDeprecated (void ) o public bool ReflectionFunctionAbstract::isGenerator (void ) o public bool ReflectionFunctionAbstract::isInternal (void ) o public bool ReflectionFunctionAbstract::isUserDefined (void ) o public bool ReflectionFunctionAbstract::isVariadic (void ) o public bool ReflectionFunctionAbstract::returnsReference (void ) o abstractpublic void ReflectionFunctionAbstract::__toString (void ) PROPERTIES
o $name - Name of the function. Read-only, throws ReflectionException in attempt to write. PREDEFINED CONSTANTS
REFLECTIONFUNCTION MODIFIERS
o ReflectionFunction::IS_DEPRECATED - Indicates deprecated functions. PHP Documentation Group REFLECTIONFUNCTION(3)
Man Page