芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/league/climate/src/Util/Writer/Buffer.php
<?php namespace League\CLImate\Util\Writer; class Buffer implements WriterInterface { /** * @var string $contents The buffered data. */ protected $contents = ""; /** * Write the content to the buffer. * * @param string $content * * @return void */ public function write($content) { $this->contents .= $content; } /** * Get the buffered data. * * @return string */ public function get() { return $this->contents; } /** * Clean the buffer and throw away any data. * * @return void */ public function clean() { $this->contents = ""; } }