Server IP : 172.67.216.182 / Your IP : 172.71.82.102 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/82/src/ext/sysvmsg/ |
Upload File : |
<?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 {}