adminerevo/adminer/include/tmpfile.inc.php

23 lines
325 B
PHP
Raw Permalink Normal View History

2013-05-01 16:33:23 +00:00
<?php
class TmpFile {
var $handler;
var $size;
2023-05-21 13:03:36 +00:00
2015-08-15 15:04:21 +00:00
function __construct() {
2013-05-01 16:33:23 +00:00
$this->handler = tmpfile();
}
2023-05-21 13:03:36 +00:00
2013-05-01 16:33:23 +00:00
function write($contents) {
$this->size += strlen($contents);
fwrite($this->handler, $contents);
}
2023-05-21 13:03:36 +00:00
2013-05-01 16:33:23 +00:00
function send() {
fseek($this->handler, 0);
fpassthru($this->handler);
fclose($this->handler);
}
2023-05-21 13:03:36 +00:00
2013-05-01 16:33:23 +00:00
}