zhaojs
2023-07-31 0de015249a3abe05031eb4f5d988e8eb7ef83c87
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
<?php
 
namespace PhpZip\Model;
 
use PhpZip\Exception\ZipException;
 
/**
 * Interface ZipData.
 */
interface ZipData
{
    /**
     * @return string returns data as string
     */
    public function getDataAsString();
 
    /**
     * @return resource returns stream data
     */
    public function getDataAsStream();
 
    /**
     * @param resource $outStream
     *
     * @throws ZipException
     */
    public function copyDataToStream($outStream);
}