Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

directoryiterator(3) [php man page]

DIRECTORYITERATOR(3)							 1						      DIRECTORYITERATOR(3)

The DirectoryIterator class

INTRODUCTION
The DirectoryIterator class provides a simple interface for viewing the contents of filesystem directories. CLASS SYNOPSIS
DirectoryIterator DirectoryIteratorextends SplFileInfoSeekableIterator Methods o public DirectoryIterator::__construct (string $path) o public DirectoryIterator DirectoryIterator::current (void ) o public int DirectoryIterator::getATime (void ) o public string DirectoryIterator::getBasename ([string $suffix]) o public int DirectoryIterator::getCTime (void ) o public string DirectoryIterator::getExtension (void ) o public string DirectoryIterator::getFilename (void ) o public int DirectoryIterator::getGroup (void ) o public int DirectoryIterator::getInode (void ) o public int DirectoryIterator::getMTime (void ) o public int DirectoryIterator::getOwner (void ) o public string DirectoryIterator::getPath (void ) o public string DirectoryIterator::getPathname (void ) o public int DirectoryIterator::getPerms (void ) o public int DirectoryIterator::getSize (void ) o public string DirectoryIterator::getType (void ) o public bool DirectoryIterator::isDir (void ) o public bool DirectoryIterator::isDot (void ) o public bool DirectoryIterator::isExecutable (void ) o public bool DirectoryIterator::isFile (void ) o public bool DirectoryIterator::isLink (void ) o public bool DirectoryIterator::isReadable (void ) o public bool DirectoryIterator::isWritable (void ) o public string DirectoryIterator::key (void ) o public void DirectoryIterator::next (void ) o public void DirectoryIterator::rewind (void ) o public void DirectoryIterator::seek (int $position) o public string DirectoryIterator::__toString (void ) o public bool DirectoryIterator::valid (void ) CHANGELOG
+--------+----------------------------------------+ |Version | | | | | | | Description | | | | +--------+----------------------------------------+ | 5.1.2 | | | | | | | DirectoryIterator extends SplFileInfo. | | | | +--------+----------------------------------------+ PHP Documentation Group DIRECTORYITERATOR(3)

Check Out this Related Man Page

REFLECTIONPARAMETER(3)							 1						    REFLECTIONPARAMETER(3)

The ReflectionParameter class

INTRODUCTION
The ReflectionParameter class retrieves information about function's or method's parameters. To introspect function parameters, first create an instance of the ReflectionFunction or ReflectionMethod classes and then use their ReflectionFunctionAbstract::getParameters method to retrieve an array of parameters. CLASS SYNOPSIS
ReflectionParameter ReflectionParameterReflector Properties o public$name Methods o public bool ReflectionParameter::allowsNull (void ) o public bool ReflectionParameter::canBePassedByValue (void ) o finalprivate void ReflectionParameter::__clone (void ) o public ReflectionParameter::__construct (string $function, string $parameter) o publicstatic string ReflectionParameter::export (string $function, string $parameter, [bool $return]) o public ReflectionClass ReflectionParameter::getClass (void ) o public ReflectionClass ReflectionParameter::getDeclaringClass (void ) o public ReflectionFunctionAbstract ReflectionParameter::getDeclaringFunction (void ) o public mixed ReflectionParameter::getDefaultValue (void ) o public string ReflectionParameter::getDefaultValueConstantName (void ) o public string ReflectionParameter::getName (void ) o public int ReflectionParameter::getPosition (void ) o public bool ReflectionParameter::isArray (void ) o public bool ReflectionParameter::isCallable (void ) o public bool ReflectionParameter::isDefaultValueAvailable (void ) o public bool ReflectionParameter::isDefaultValueConstant (void ) o public bool ReflectionParameter::isOptional (void ) o public bool ReflectionParameter::isPassedByReference (void ) o public bool ReflectionParameter::isVariadic (void ) o public string ReflectionParameter::__toString (void ) PROPERTIES
o $name - Name of the parameter. Read-only, throws ReflectionException in attempt to write. PHP Documentation Group REFLECTIONPARAMETER(3)
Man Page