如何获得特定豆茎管的统计



我想获得email管的统计信息这是我的代码:

$queue = new PhalconQueueBeanstalk(array('host' => 'xxx.xx.x.x','port' => '11300'));
$queue->choose('email');
$queue->watch('email');
$statTube=statsTube('email');

我试图用stats_tube代替statsTube,但它不起作用。

我有这个错误:PHP Fatal error: Call to undefined function statsTube()

我的错误是什么?我不明白!

从对象中调用,因为它是类的方法。

$statTube=$queue->statsTube('email');

相关内容

  • 没有找到相关文章

最新更新