一个用于检查[可能为新的]服务器环境中正在使用的消息队列的简单脚本。
使用 php-cli 运行
<?php
$k = 0;
while (true) {
echo $key,"...\r";
if (msg_queue_exists($key))
echo "\r",$key,'::Exists',"\n";
$key++;
}
?>
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
msg_queue_exists — 检查消息队列是否存在
key
队列键。
一个用于检查[可能为新的]服务器环境中正在使用的消息队列的简单脚本。
使用 php-cli 运行
<?php
$k = 0;
while (true) {
echo $key,"...\r";
if (msg_queue_exists($key))
echo "\r",$key,'::Exists',"\n";
$key++;
}
?>