PHP 8.3.4 Released!

Instalación

Por defecto, el soporte para estas funciones no está disponible. Para habilitar el soporte del semáforo de System V compile PHP con la opción --enable-sysvsem. Para habilitar el soporte de la memoria compartida de System V compile PHP con la opción --enable-sysvshm. Para habilitar el soporte de mensajes de System V compile PHP con la opción --enable-sysvmsg.

add a note

User Contributed Notes 1 note

up
-17
sparcbr at gmail dot com
3 years ago
It should be mentioned that depending on the system, an module can be available.

On CentOS I just ran:
sudo yum install php73-php-sysvsem

then reload:
sudo service php-fpm reload (or apache, depending on your case)

and semaphore functions are now available.
To Top