update page now
Longhorn PHP 2026 - Call For Papers

Voting

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

The Note You're Voting On

michael dot hajuu at gmail dot com
15 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