CakeFest 2024: The Official CakePHP Conference

La classe EventHttp

(PECL event >= 1.4.0-beta)

Introduction

Représente le serveur HTTP.

Synopsis de la classe

final class EventHttp {
/* Méthodes */
public accept( mixed $socket ): bool
public addServerAlias( string $alias ): bool
public bind( string $address , int $port ): void
public __construct( EventBase $base , EventSslContext $ctx = null )
public removeServerAlias( string $alias ): bool
public setAllowedMethods( int $methods ): void
public setCallback( string $path , string $cb , string $arg = ?): void
public setDefaultCallback( string $cb , string $arg = ?): void
public setMaxBodySize( int $value ): void
public setMaxHeadersSize( int $value ): void
public setTimeout( int $value ): void
}

Sommaire

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top