PHP 8.5.0 Alpha 2 available for testing

Constantes predefinidas

Estas constantes son definidas por esta extensión, y solo están disponibles si esta extensión ha sido compilada con PHP, o bien cargada en tiempo de ejecución.

PTHREADS_INHERIT_ALL (int)
Las opciones por omisión para todos los hilos, haciendo que los pthreads copien los entornos cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_NONE (int)
No hereda nada cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_INI (int)
Hereda las entradas INI cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_CONSTANTS (int)
Hereda las constantes declaradas por el usuario cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_CLASSES (int)
Hereda las clases declaradas por el usuario cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_FUNCTIONS (int)
Hereda las funciones declaradas por el usuario cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_INCLUDES (int)
La herencia incluye la información de fichero cuando los nuevos hilos son iniciados
PTHREADS_INHERIT_COMMENTS (int)
Hereda todos los comentarios cuando los nuevos hilos son iniciados
PTHREADS_ALLOW_HEADERS (int)
Permite que los nuevos hilos envíen los encabezados a la salida estándar (normalmente no permitido)

add a note

User Contributed Notes

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