我如何在Phalcon中使用flush功能

时间:2014-02-13 02:13:37

标签: php phalcon

喜欢这个。我想要留言。

class TestController extends \Phalcon\Mvc\Controller{

public function indexAction()
{
  for ($i = 0; $i < 10; $i++) 
  {
    echo $i . '<br>';
    flush();
    ob_flush();
    sleep(1);
  }       
}
}

此代码不起作用,不知道吗?

1 个答案:

答案 0 :(得分:0)

像往常一样打印输出:

class TestController extends \Phalcon\Mvc\Controller
{

public function indexAction()
{
  for ($i = 0; $i < 10; $i++) 
  {
    echo $i . '<br>';        
  }       
}

在您的视图中,必须显示消息的位置:

伏:

{{ content() }}

普通PHP:

<?php echo $this->getContent(); ?>