1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-08-02 13:37:25 +02: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. Save archive to a stream.
```php ```php
$handle = fopen($filename, 'w+b); $handle = fopen($filename, 'w+b');
$autoCloseResource = true; $autoCloseResource = true;
$zipOutputFile->saveAsStream($handle, $autoCloseResource); $zipOutputFile->saveAsStream($handle, $autoCloseResource);
if(!$autoCloseResource){ if(!$autoCloseResource){