Я получаю код из этого потока , в котором говорится о блокировке DWOO с использованием потоков php, но я не могу понять, как использовать этот код. Кто-нибудь может сказать мне, как его использовать?
недавняя проблема:
У меня серьезная проблема с моим хранилищем на веб-хостинге из-за большого количества файлов кэша, созданных в папке cache / dwoo / compiled. Я разработал свой веб-сайт с использованием платформы codeigniter Я хочу отключить эту функцию (автоматически создаваемые файлы кэша в папке cache / dwoo / compiled), поскольку она занимает много места в моем хранилище.
это код:
include 'lib/dwooAutoload.php';
include 'Dwoo/Compiler.php';
$dwoo = new Dwoo();
stream_wrapper_register('dwoomem', 'Dwoo_Template_Memory_StreamWrapper');
$dwoo->addResource('memory', 'Dwoo_Template_Memory');
$tpl = new Dwoo_Template_Memory('test.html');
$dwoo->output($tpl, array('foo'=>'FOO', 'bar'=>'BAR'));
class Dwoo_Template_Memory extends Dwoo_Template_File
{
protected $chmod = null;
public function getCompiledFilename(Dwoo $dwoo) {
// no compile id was provided, set default
if ($this->compileId===null) {
$this->compileId = $this->getResourceIdentifier();
}
return 'dwoomem://'.$this->compileId;
}
protected function makeDirectory($path)
{
}
}
class Dwoo_Template_Memory_StreamWrapper
{
protected static $streams = array();
function stream_open($path, $mode, $options, &$opened_path)
{
if (!isset(self::$streams[$path])) {
if(!($mem = fopen('php://memory', 'w+'))) {
return false;
}
self::$streams[$path] = $mem;
}
$this->res = self::$streams[$path];
$this->stream_seek(0);
return true;
}
function stream_read($count)
{
return fread($this->res, $count);
}
function stream_write($data)
{
return fwrite($this->res, $data);
}
function stream_eof()
{
return feof($this->res);
}
function stream_seek($offset, $whence=SEEK_SET)
{
return fseek($this->res, $offset, $whence);
}
function stream_stat()
{
return fstat($this->res);
}
public static function url_stat($path, $flags)
{
return array();
}
}