1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-01-17 23:38:19 +01:00

Correcting typos in the README

This commit is contained in:
Ne-Lexa 2016-09-26 18:33:05 +03:00
parent 9370f353c6
commit 47d308605e

View File

@ -362,7 +362,7 @@ $zipOutputFile->saveAsFile($filename);
```
Save archive to a stream.
```php
$handle = fopen($filename, 'w+b);
$handle = fopen($filename, 'w+b');
$autoCloseResource = true;
$zipOutputFile->saveAsStream($handle, $autoCloseResource);
if(!$autoCloseResource){