我希望得到email
管的统计数据
这是我的代码:
$queue = new Phalcon\Queue\Beanstalk(array('host' => 'xxx.xx.x.x','port' => '11300'));
$queue->choose('email');
$queue->watch('email');
$statTube=statsTube('email');
我尝试按statsTube
重新stats_tube
,但它不起作用。
我有这个错误:PHP Fatal error: Call to undefined function statsTube()
我的错误是什么?我不明白!
答案 0 :(得分:1)
从对象中调用它,因为它是类的一种方法。
$statTube=$queue->statsTube('email');