1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76:
<?php
namespace Inteve\FeedGenerator\Outputs;
use Inteve\FeedGenerator\FileSystemException;
use Inteve\FeedGenerator\IOutput;
use Inteve\FeedGenerator\OutputException;
class FileOutput implements IOutput
{
private $file;
private $fp;
private $opened = FALSE;
public function __construct($file)
{
$this->file = $file;
}
public function open()
{
if (!$this->opened) {
@mkdir(dirname($this->file), 0777, TRUE);
$fp = @fopen($this->file, 'w');
if ($fp === FALSE) {
throw new FileSystemException("File '{$this->file}' is not writable.");
}
$this->fp = $fp;
$this->opened = TRUE;
}
}
public function output($s)
{
if (!$this->opened) {
throw new OutputException("File is not open, call open() method.");
}
fwrite($this->fp, $s);
}
public function close()
{
if ($this->opened) {
fclose($this->fp);
$this->opened = FALSE;
}
}
}