Kohana 3 Command line output buffering?
问题 I am using Kohana 3 and I have a controller that extends Kohana_Controller. I call it from the command line using: php /path/to//index.php --uri="url/path" It works just fine, but this particular script takes a long time and during the execution I am echoing status messages (echo 'status message';) but none of the messages appear until after the script has completed executing. I want to see the status messages as they are echoed, can anyone tell me how to do it? Thanks 回答1: It looks like