| 1234567891011121314151617181920212223242526 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxVps\Core\Traits;
- trait OutputBuffer
- {
- /**
- * cleans an output buffer before sending the response form server
- */
- protected function cleanOutputBuffer()
- {
- $outputBuffering = \ob_get_contents();
- if($outputBuffering !== FALSE)
- {
- if(!empty($outputBuffering))
- {
- \ob_clean();
- }
- else
- {
- \ob_start();
- }
- }
- return $this;
- }
- }
|