Constantes predefinidas

Estas constantes están definidas por esta extensión y estarán disponibles sólo cuando la extensión haya sido compilada con PHP, o bien sea cargada dinámicamente en ejecución.

PTHREADS_INHERIT_ALL (integer)
Las opciones predeterminadas para todos los Thread; hace que pthreads copie el entorno al iniciar nuevos Thread
PTHREADS_INHERIT_NONE (integer)
No heredar nada al iniciar nuevos Thread
PTHREADS_INHERIT_INI (integer)
Heredar las entradas INI al iniciar nuevos Thread
PTHREADS_INHERIT_CONSTANTS (integer)
Heredar las constantes declaradas por el usuario al iniciar nuevos Thread
PTHREADS_INHERIT_CLASSES (integer)
Heredar las clases declaradas por el usuario al iniciar nuevos Thread
PTHREADS_INHERIT_FUNCTIONS (integer)
Heredar las funciones declaradas por el usuario al iniciar nuevos Thread
PTHREADS_INHERIT_INCLUDES (integer)
Heredar la información del fichero incluido al iniciar nuevos Thread
PTHREADS_INHERIT_COMMENTS (integer)
Heredar todos los comentarios al iniciar nuevos Thread
PTHREADS_ALLOW_HEADERS (integer)
Permitir que los nuevos Thread envíen cabeceras a la salida estándar (normalmente prohibido)

add a note add a note

User Contributed Notes

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