msg_queue_exists

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

msg_queue_exists检查消息队列是否存在

描述

msg_queue_exists(int $key): bool

检查消息队列 key 是否存在。

参数

key

队列键。

返回值

成功时返回 true,失败时返回 false

参见

添加注释

用户贡献注释 1 个注释

1
michael dot hajuu at gmail dot com
13 年前
一个简单的脚本,用于检查 [可能全新的] 服务器环境中正在使用哪些消息队列。

使用 php-cli 运行

<?php
$k
= 0;
while (
true) {
echo
$key,"...\r";
if (
msg_queue_exists($key))
echo
"\r",$key,'::Exists',"\n";
$key++;
}
?>
To Top