Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

eventhttprequest(3) [php man page]

EVENTHTTPREQUEST(3)							 1						       EVENTHTTPREQUEST(3)

The EventHttpRequest class

INTRODUCTION
Represents an HTTP request. CLASS SYNOPSIS
EventHttpRequest EventHttpRequest Constants o const integer$EventHttpRequest::CMD_GET1 o const integer$EventHttpRequest::CMD_POST2 o const integer$EventHttpRequest::CMD_HEAD4 o const integer$EventHttpRequest::CMD_PUT8 o const integer$EventHttpRequest::CMD_DELETE16 o const integer$EventHttpRequest::CMD_OPTIONS32 o const integer$EventHttpRequest::CMD_TRACE64 o const integer$EventHttpRequest::CMD_CONNECT128 o const integer$EventHttpRequest::CMD_PATCH256 o const integer$EventHttpRequest::INPUT_HEADER1 o const integer$EventHttpRequest::OUTPUT_HEADER2 Methods o public bool EventHttpRequest::addHeader (string $key, string $value, int $type) o public void EventHttpRequest::cancel (void ) o public void EventHttpRequest::clearHeaders (void ) o public void EventHttpRequest::closeConnection (void ) o public EventHttpRequest::__construct NULL (callable $callback, [mixed $data]) o public void EventHttpRequest::findHeader (string $key, string $type) o public void EventHttpRequest::free (void ) o public EventBufferEvent EventHttpRequest::closeConnection (void ) o public void EventHttpRequest::getCommand (void ) o public EventHttpConnection EventHttpRequest::closeConnection (void ) o public string EventHttpRequest::getHost (void ) o public EventBuffer EventHttpRequest::getInputBuffer (void ) o public array EventHttpRequest::getInputHeaders (void ) o public EventBuffer EventHttpRequest::getOutputBuffer (void ) o public void EventHttpRequest::getOutputHeaders (void ) o public int EventHttpRequest::getResponseCode (void ) o public string EventHttpRequest::getUri (void ) o public void EventHttpRequest::removeHeader (string $key, string $type) o public void EventHttpRequest::sendError NULL (int $error, [string $reason]) o public void EventHttpRequest::sendReply (int $code, string $reason, [EventBuffer $buf]) o public void EventHttpRequest::sendReplyChunk (EventBuffer $buf) o public void EventHttpRequest::sendReplyEnd (void ) o public void EventHttpRequest::sendReplyStart (int $code, string $reason) PREDEFINED CONSTANTS
o EventHttpRequest::CMD_GET - GET method(command) o EventHttpRequest::CMD_POST - POST method(command) o EventHttpRequest::CMD_HEAD - HEAD method(command) o EventHttpRequest::CMD_PUT - PUT method(command) o EventHttpRequest::CMD_DELETE - DELETE command(method) o EventHttpRequest::CMD_OPTIONS - OPTIONS method(command) o EventHttpRequest::CMD_TRACE - TRACE method(command) o EventHttpRequest::CMD_CONNECT - CONNECT method(command) o EventHttpRequest::CMD_PATCH - PATCH method(command) o EventHttpRequest::INPUT_HEADER - Request input header type. o EventHttpRequest::OUTPUT_HEADER - Request output header type. PHP Documentation Group EVENTHTTPREQUEST(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