Longhorn PHP 2025 - Call For Papers

Voting

: three minus two?
(Example: nine)

The Note You're Voting On

pail dot luo at gmail dot com
16 years ago
A simple Sample to introduce Message Queue.

<?php
if ( sizeof($argv)<2 ) {
echo
"Usage: $argv[0] stat|send|receive|remove msgType MSG [msg] \n\n" ;
echo
" EX: $argv[0] send 1 \"This is no 1\" \n" ;
echo
" $argv[0] receive ID \n" ;
echo
" $argv[0] stat \n" ;
echo
" $argv[0] remove \n" ;
exit;
}

$MSGKey = "123456" ;

## Create or attach to a message queue
$seg = msg_get_queue($MSGKey) ;

switch (
$argv[1] ) {
case
"send":
msg_send($seg, $argv[2], $argv[3]);
echo
"msg_send done...\n" ;
break;

case
"receive":
$stat = msg_stat_queue( $seg );
echo
'Messages in the queue: '.$stat['msg_qnum']."\n";
if (
$stat['msg_qnum']>0 ) {
msg_receive($seg, $argv[2], $msgtype, 1024, $data);
var_dump($msgtype);
var_dump($data);
echo
"\n";
}
else {
echo
"No Msg...\n";
}
break;

case
"stat":
print_r( msg_stat_queue($seg) );
break;

case
"remove":
msg_remove_queue($seg);
break;
}
?>

<< Back to user notes page

To Top