Files
adminer/adminer/include/tmpfile.inc.php
2025-03-26 16:22:15 +01:00

23 lines
382 B
PHP

<?php
namespace Adminer;
class TmpFile {
private $handler;
public $size; ///< @visibility protected(set)
function __construct() {
$this->handler = tmpfile();
}
function write($contents) {
$this->size += strlen($contents);
fwrite($this->handler, $contents);
}
function send() {
fseek($this->handler, 0);
fpassthru($this->handler);
fclose($this->handler);
}
}