aboutsummaryrefslogtreecommitdiff
path: root/examples/02-add_file_from_path.php
blob: 012d50c610f8f9ad981bc1c164c6a4990623e12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

require_once __DIR__ . '/../src/ZipStream.php';

# import zipstream class
use Pablotron\ZipStream\ZipStream;

# set source path of local file
$src_path = __FILE__;

# create the output archive named "example.zip"
$zip = new ZipStream('example.zip');

# read from source path and add it to the archive as "example.php"
$zip->add_file_from_path('example.php', $src_path);

# finalize the output stream
$zip->close();