-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathPlainFileWriter.php
More file actions
43 lines (36 loc) · 702 Bytes
/
PlainFileWriter.php
File metadata and controls
43 lines (36 loc) · 702 Bytes
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
<?php
namespace samdark\sitemap;
/**
* Writes the given data as-is into a file
*/
class PlainFileWriter implements WriterInterface
{
/**
* @var resource for target file
*/
private $file;
/**
* @param string $filename target file
*/
public function __construct($filename)
{
$this->file = fopen($filename, 'ab');
}
/**
* @inheritdoc
*/
public function append($data)
{
assert($this->file !== null);
fwrite($this->file, $data);
}
/**
* @inheritdoc
*/
public function finish()
{
assert($this->file !== null);
fclose($this->file);
$this->file = null;
}
}