[PHP] Class werkt niet onder PHP4

Pagina: 1
Acties:
  • 40 views sinds 30-01-2008

  • willem-alex
  • Registratie: December 2001
  • Laatst online: 18-05-2024

willem-alex

you don't wanna know ...

Topicstarter
Heb een schitterende class om on-the-fly zipjes mee te maken van het net geplukt. Hij werkt prachtig maar helaas niet op PHP4 (wel op PHP5). Heeft iemand een idee wat ik er aan moet veranderen om hem ook op PHP4 werkend te krijgen?

code:
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php

/**
 * Class to dynamically create a zip file (archive)
 *
 * @author Rochak Chauhan
 */

class createZip  {  

    public $compressedData = array(); 
    public $centralDirectory = array(); // central directory   
    public $endOfCentralDirectory = "\x50\x4b\x05\x06\x00\x00\x00\x00"; //end of Central directory record
    public $oldOffset = 0;

    /**
     * Function to create the directory where the file(s) will be unzipped
     *
     * @param $directoryName string 
     *
     */
    
    public function addDirectory($directoryName) {
        $directoryName = str_replace("\\", "/", $directoryName);  

        $feedArrayRow = "\x50\x4b\x03\x04";
        $feedArrayRow .= "\x0a\x00";    
        $feedArrayRow .= "\x00\x00";    
        $feedArrayRow .= "\x00\x00";    
        $feedArrayRow .= "\x00\x00\x00\x00"; 

        $feedArrayRow .= pack("V",0); 
        $feedArrayRow .= pack("V",0); 
        $feedArrayRow .= pack("V",0); 
        $feedArrayRow .= pack("v", strlen($directoryName) ); 
        $feedArrayRow .= pack("v", 0 ); 
        $feedArrayRow .= $directoryName;  

        $feedArrayRow .= pack("V",0); 
        $feedArrayRow .= pack("V",0); 
        $feedArrayRow .= pack("V",0); 

        $this -> compressedData[] = $feedArrayRow;
        
        $newOffset = strlen(implode("", $this->compressedData));

        $addCentralRecord = "\x50\x4b\x01\x02";
        $addCentralRecord .="\x00\x00";    
        $addCentralRecord .="\x0a\x00";    
        $addCentralRecord .="\x00\x00";    
        $addCentralRecord .="\x00\x00";    
        $addCentralRecord .="\x00\x00\x00\x00"; 
        $addCentralRecord .= pack("V",0); 
        $addCentralRecord .= pack("V",0); 
        $addCentralRecord .= pack("V",0); 
        $addCentralRecord .= pack("v", strlen($directoryName) ); 
        $addCentralRecord .= pack("v", 0 ); 
        $addCentralRecord .= pack("v", 0 ); 
        $addCentralRecord .= pack("v", 0 ); 
        $addCentralRecord .= pack("v", 0 ); 
        $ext = "\x00\x00\x10\x00";
        $ext = "\xff\xff\xff\xff";  
        $addCentralRecord .= pack("V", 16 ); 

        $addCentralRecord .= pack("V", $this -> oldOffset ); 
        $this -> oldOffset = $newOffset;

        $addCentralRecord .= $directoryName;  

        $this -> centralDirectory[] = $addCentralRecord;  
    }    
    
    /**
     * Function to add file(s) to the specified directory in the archive 
     *
     * @param $directoryName string 
     *
     */
    
    public function addFile($data, $directoryName)   {
 
        $directoryName = str_replace("\\", "/", $directoryName);  
    
        $feedArrayRow = "\x50\x4b\x03\x04";
        $feedArrayRow .= "\x14\x00";    
        $feedArrayRow .= "\x00\x00";    
        $feedArrayRow .= "\x08\x00";    
        $feedArrayRow .= "\x00\x00\x00\x00"; 

        $uncompressedLength = strlen($data);  
        $compression = crc32($data);  
        $gzCompressedData = gzcompress($data, 9);  
        $gzCompressedData = substr( substr($gzCompressedData, 0, strlen($gzCompressedData) - 4), 2); 
        $compressedLength = strlen($gzCompressedData);  
        $feedArrayRow .= pack("V",$compression); 
        $feedArrayRow .= pack("V",$compressedLength); 
        $feedArrayRow .= pack("V",$uncompressedLength); 
        $feedArrayRow .= pack("v", strlen($directoryName) ); 
        $feedArrayRow .= pack("v", 0 ); 
        $feedArrayRow .= $directoryName;  

        $feedArrayRow .= $gzCompressedData;  

        $feedArrayRow .= pack("V",$compression); 
        $feedArrayRow .= pack("V",$compressedLength); 
        $feedArrayRow .= pack("V",$uncompressedLength); 

        $this -> compressedData[] = $feedArrayRow;

        $newOffset = strlen(implode("", $this->compressedData));

        $addCentralRecord = "\x50\x4b\x01\x02";
        $addCentralRecord .="\x00\x00";    
        $addCentralRecord .="\x14\x00";    
        $addCentralRecord .="\x00\x00";    
        $addCentralRecord .="\x08\x00";    
        $addCentralRecord .="\x00\x00\x00\x00"; 
        $addCentralRecord .= pack("V",$compression); 
        $addCentralRecord .= pack("V",$compressedLength); 
        $addCentralRecord .= pack("V",$uncompressedLength); 
        $addCentralRecord .= pack("v", strlen($directoryName) ); 
        $addCentralRecord .= pack("v", 0 );
        $addCentralRecord .= pack("v", 0 );
        $addCentralRecord .= pack("v", 0 );
        $addCentralRecord .= pack("v", 0 );
        $addCentralRecord .= pack("V", 32 ); 

        $addCentralRecord .= pack("V", $this -> oldOffset ); 
        $this -> oldOffset = $newOffset;

        $addCentralRecord .= $directoryName;  

        $this -> centralDirectory[] = $addCentralRecord;  
    }

    /**
     * Fucntion to return the zip file
     *
     * @return zipfile (archive)
     */

    public function getZippedfile() { 

        $data = implode("", $this -> compressedData);  
        $controlDirectory = implode("", $this -> centralDirectory);  

        return   
            $data.  
            $controlDirectory.  
            $this -> endOfCentralDirectory.  
            pack("v", sizeof($this -> centralDirectory)).     
            pack("v", sizeof($this -> centralDirectory)).     
            pack("V", strlen($controlDirectory)).             
            pack("V", strlen($data)).                
            "\x00\x00";                             
    }

    /**
     *
     * Function to force the download of the archive as soon as it is created
     *
     * @param archiveName string - name of the created archive file
     */

    public function forceDownload($archiveName) {
        $headerInfo = '';
         
        if(ini_get('zlib.output_compression')) {
            ini_set('zlib.output_compression', 'Off');
        }

        // Security checks
        if( $archiveName == "" ) {
            echo "<html><title>Public Photo Directory - Download </title><body><BR><B>ERROR:</B> The download file was NOT SPECIFIED.</body></html>";
            exit;
        } 
        elseif ( ! file_exists( $archiveName ) ) {
            echo "<html><title>Public Photo Directory - Download </title><body><BR><B>ERROR:</B> File not found.</body></html>";
            exit;
        }

        header("Pragma: public");
        header("Expires: 0");
        header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
        header("Cache-Control: private",false);
        header("Content-Type: application/zip");
        header("Content-Disposition: attachment; filename=".basename($archiveName).";" );
        header("Content-Transfer-Encoding: binary");
        header("Content-Length: ".filesize($archiveName));
        readfile("$archiveName");
        
     }

}
?>

  • Sappie
  • Registratie: September 2000
  • Laatst online: 27-04 07:10

Sappie

De Parasitaire Capaciteit!

sowieso maakt php4 geen onderscheid tussen public en private members. De properties van deze klasse zul je dus allemaal even om moeten zetten naar vars. Voor de methoden dien je dan dus private / public weg te halen.

Verder zul je het zelf moeten uitzoeken wat mij betreft.. tis hier geen "fix dit door iemand anders gemaakt script" forum :) Bovendien is er genoeg te vinden over de verschillen tussen php4 & 5.

[ Voor 13% gewijzigd door Sappie op 21-09-2005 21:14 ]

Specs | Audioscrobbler


Verwijderd

En let er verder op dat crc32() en gzcompress() vanaf 4.01 werken.

  • NMe
  • Registratie: Februari 2004
  • Laatst online: 15-04 22:07

NMe

Quia Ego Sic Dico.

Sorry, maar we geven geen support op scripts van derden. Mail meneer Chauhan maar.

'E's fighting in there!' he stuttered, grabbing the captain's arm.
'All by himself?' said the captain.
'No, with everyone!' shouted Nobby, hopping from one foot to the other.


Dit topic is gesloten.