一个简单的脚本,用于检查 [可能全新的] 服务器环境中正在使用哪些消息队列。
使用 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++;
}
?>