Voting

: max(seven, three)?
(Example: nine)

The Note You're Voting On

michael dot hajuu at gmail dot com
14 years ago
A simple script for checking what message queues are in use on a [presumably new] server environment.

Run with php-cli

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

<< Back to user notes page

To Top