Yii v2 snippet guide II

Comparing #20 with #21

Revision #21 was created by rackycz rackycz on Sep 8, 2020, 7:41:46 PM.

Composer and PhpExcel

Content

[...]
exit();
```

Thanks to [DbCreator](https://forum.yiiframework.com/t/yii2-phpoffice-phpspreadsheet-src-phpspreadsheet-shared-ole-pps-root-php-on-line-292-headers-already-sent/126617) for the latter approach.

Following is my idea
 which originates in method renderPhpFile() from Yii2:

```php
ob_start();
ob_implicit_flush(false);
$writer->save('php://output');
[...]