fat-free framework flush partial output
问题 I'm writing some back-office web pages for maintenance of our systems. I'm using F3 I have one route with a long processing, divided in many subprocesses. I made one template per subprocess, this way: $f3->route('GET /someroute', function($f3) { dosomework(); echo template::instance()->render('template-job1.html'); dosomeotherwork(); echo template::instance()->render('template-job2.html'); } I would like that i get in browser partial output as it is ready (one template at time) but what i get