/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/sysvmsg/sysvmsg.stub.php
68 строк
1 KB
Máté Kocsis
Declare ext/sysvmsg constants in stubs (#9125)
25 июл 2022, 17:21
Не верифицирован
25 июл 2022, 17:21
4ad7e72
Код
Авторство
О чём код?
<?php /** @generate-class-entries */ /** * @var int * @cvalue PHP_MSG_IPC_NOWAIT */ const MSG_IPC_NOWAIT = UNKNOWN; /** * @var int * @cvalue EAGAIN */ const MSG_EAGAIN = UNKNOWN; /** * @var int * @cvalue ENOMSG */ const MSG_ENOMSG = UNKNOWN; /** * @var int * @cvalue PHP_MSG_NOERROR */ const MSG_NOERROR = UNKNOWN; /** * @var int * @cvalue PHP_MSG_EXCEPT */ const MSG_EXCEPT = UNKNOWN; /** * @strict-properties * @not-serializable */ final class SysvMessageQueue { } function msg_get_queue(int $key, int $permissions = 0666): SysvMessageQueue|false {} /** * @param string|int|float|bool $message * @param int $error_code */ function msg_send(SysvMessageQueue $queue, int $message_type, $message, bool $serialize = true, bool $blocking = true, &$error_code = null): bool {} /** * @param int $received_message_type * @param int $error_code */ function msg_receive( SysvMessageQueue $queue, int $desired_message_type, &$received_message_type, int $max_message_size, mixed &$message, bool $unserialize = true, int $flags = 0, &$error_code = null ): bool {} function msg_remove_queue(SysvMessageQueue $queue): bool {} function msg_stat_queue(SysvMessageQueue $queue): array|false {} function msg_set_queue(SysvMessageQueue $queue, array $data): bool {} function msg_queue_exists(int $key): bool {}