Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

harudoc(3) [php man page]

HARUDOC(3)								 1								HARUDOC(3)

The HaruDoc class

INTRODUCTION
Haru PDF Document Class. CLASS SYNOPSIS
HaruDoc HaruDoc Methods o object HaruDoc::addPage (void ) o bool HaruDoc::addPageLabel (int $first_page, int $style, int $first_num, [string $prefix = ""]) o HaruDoc::__construct (void ) o object HaruDoc::createOutline (string $title, [object $parent_outline], [object $encoder]) o object HaruDoc::getCurrentEncoder (void ) o object HaruDoc::getCurrentPage (void ) o object HaruDoc::getEncoder (string $encoding) o object HaruDoc::getFont (string $fontname, [string $encoding]) o string HaruDoc::getInfoAttr (int $type) o int HaruDoc::getPageLayout (void ) o int HaruDoc::getPageMode (void ) o int HaruDoc::getStreamSize (void ) o object HaruDoc::insertPage (object $page) o object HaruDoc::loadJPEG (string $filename) o object HaruDoc::loadPNG (string $filename, [bool $deferred = false]) o object HaruDoc::loadRaw (string $filename, int $width, int $height, int $color_space) o string HaruDoc::loadTTC (string $fontfile, int $index, [bool $embed = false]) o string HaruDoc::loadTTF (string $fontfile, [bool $embed = false]) o string HaruDoc::loadType1 (string $afmfile, [string $pfmfile]) o bool HaruDoc::output (void ) o string HaruDoc::readFromStream (int $bytes) o bool HaruDoc::resetError (void ) o bool HaruDoc::resetStream (void ) o bool HaruDoc::save (string $file) o bool HaruDoc::saveToStream (void ) o bool HaruDoc::setCompressionMode (int $mode) o bool HaruDoc::setCurrentEncoder (string $encoding) o bool HaruDoc::setEncryptionMode (int $mode, [int $key_len = 5]) o bool HaruDoc::setInfoAttr (int $type, string $info) o bool HaruDoc::setInfoDateAttr (int $type, int $year, int $month, int $day, int $hour, int $min, int $sec, string $ind, int $off_hour, int $off_min) o bool HaruDoc::setOpenAction (object $destination) o bool HaruDoc::setPageLayout (int $layout) o bool HaruDoc::setPageMode (int $mode) o bool HaruDoc::setPagesConfiguration (int $page_per_pages) o bool HaruDoc::setPassword (string $owner_password, string $user_password) o bool HaruDoc::setPermission (int $permission) o bool HaruDoc::useCNSEncodings (void ) o bool HaruDoc::useCNSFonts (void ) o bool HaruDoc::useCNTEncodings (void ) o bool HaruDoc::useCNTFonts (void ) o bool HaruDoc::useJPEncodings (void ) o bool HaruDoc::useJPFonts (void ) o bool HaruDoc::useKREncodings (void ) o bool HaruDoc::useKRFonts (void ) PREDEFINED CONSTANTS
PHP Documentation Group HARUDOC(3)

Check Out this Related Man Page

REFLECTIONMETHOD(3)							 1						       REFLECTIONMETHOD(3)

The ReflectionMethod class

INTRODUCTION
The ReflectionMethod class reports information about a method. CLASS SYNOPSIS
ReflectionMethod ReflectionMethodextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionMethod::IS_STATIC1 o const integer$ReflectionMethod::IS_PUBLIC256 o const integer$ReflectionMethod::IS_PROTECTED512 o const integer$ReflectionMethod::IS_PRIVATE1024 o const integer$ReflectionMethod::IS_ABSTRACT2 o const integer$ReflectionMethod::IS_FINAL4 Properties o public$name o public$class Methods o public ReflectionMethod::__construct (mixed $class, string $name) o publicstatic string ReflectionMethod::export (string $class, string $name, [bool $return = false]) o public Closure ReflectionMethod::getClosure (object $object) o public ReflectionClass ReflectionMethod::getDeclaringClass (void ) o public int ReflectionMethod::getModifiers (void ) o public ReflectionMethod ReflectionMethod::getPrototype (void ) o public mixed ReflectionMethod::invoke (object $object, [mixed $parameter], [mixed $...]) o public mixed ReflectionMethod::invokeArgs (object $object, array $args) o public bool ReflectionMethod::isAbstract (void ) o public bool ReflectionMethod::isConstructor (void ) o public bool ReflectionMethod::isDestructor (void ) o public bool ReflectionMethod::isFinal (void ) o public bool ReflectionMethod::isPrivate (void ) o public bool ReflectionMethod::isProtected (void ) o public bool ReflectionMethod::isPublic (void ) o public bool ReflectionMethod::isStatic (void ) o public void ReflectionMethod::setAccessible (bool $accessible) o public string ReflectionMethod::__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 -Method name o $class -Class name PREDEFINED CONSTANTS
REFLECTIONMETHOD MODIFIERS
o ReflectionMethod::IS_STATIC -Indicates that the method is static. o ReflectionMethod::IS_PUBLIC -Indicates that the method is public. o ReflectionMethod::IS_PROTECTED -Indicates that the method is protected. o ReflectionMethod::IS_PRIVATE -Indicates that the method is private. o ReflectionMethod::IS_ABSTRACT -Indicates that the method is abstract. o ReflectionMethod::IS_FINAL -Indicates that the method is final. PHP Documentation Group REFLECTIONMETHOD(3)
Man Page