| 1 | <?php |
||
| 13 | class FileWriter extends OutputStreamWriter |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * constructor |
||
| 17 | * @param mixed $file ファイルオブジェクトまたはファイルパス |
||
| 18 | */ |
||
| 19 | public function __construct($file, bool $isAppend = false, int $bufferSize = null) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * ファイルに書き込む |
||
| 33 | * @param mixed $data 書き込みデータ |
||
| 34 | */ |
||
| 35 | public function write($data) |
||
| 39 | } |
||
| 40 |