Files
adminer/adminer/include/tmpfile.inc.php
2025-03-11 08:16:39 +01:00

22 lines
342 B
PHP

<?php
namespace Adminer;
class TmpFile {
private $handler, $size;
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);
}
}