<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Made of Everything You&#039;re Not &#187; zip</title>
	<atom:link href="http://blog.ericlamb.net/tag/zip/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ericlamb.net</link>
	<description>Thoughts on programming, people and life</description>
	<lastBuildDate>Wed, 11 Aug 2010 03:58:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Manipulate Zip Files with PHP</title>
		<link>http://blog.ericlamb.net/2009/04/manipulate-zip-files-with-php/</link>
		<comments>http://blog.ericlamb.net/2009/04/manipulate-zip-files-with-php/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 13:39:59 +0000</pubDate>
		<dc:creator>Eric Lamb</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://blog.ericlamb.net/?p=1054</guid>
		<description><![CDATA[Back in the olden days the easiest way to create zip files using php was to have the operating system (OS) do it. Sure, there were modules you could compile php with but really affected portability. So using the OS wasn&#8217;t too big of an issue but it still wasn&#8217;t optimal. The Old Way Assuming [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the olden days the easiest way to create zip files using php was to have the operating system (OS) do it. Sure, there were modules you could compile php with but really affected portability. So using the OS wasn&#8217;t too big of an issue but it still wasn&#8217;t optimal. </p>
<div id="attachment_1270" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.ericlamb.net/wp-content/uploads/2009/03/zip_format.jpg" onclick="return TrackClick('http%3A%2F%2Fblog.ericlamb.net%2Fwp-content%2Fuploads%2F2009%2F03%2Fzip_format.jpg','Zip+Files')"><img src="http://blog.ericlamb.net/wp-content/uploads/2009/03/zip_format-300x245.jpg" alt="Zip Files" title="Zip Files" width="300" height="245" class="size-medium wp-image-1270" /></a><p class="wp-caption-text">Zip Files</p></div>
<h3>The Old Way</h3>
<p>Assuming the OS was Linux, and if you were doing php web development it probably was, you&#8217;d execute a call like the below to create a gzipped archive:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #990000;">exec</span><span style="color: #000;">&#40;</span>tar cfvz <span style="color: #0000ff;">&quot;.<span style="color: #006699; font-weight: bold;">$WhereBackup</span>.&quot;</span><span style="color: #339933;">/</span><span style="color: #0000ff;">&quot;.<span style="color: #006699; font-weight: bold;">$Name</span>.&quot;</span><span style="color: #339933;">.</span>tar<span style="color: #339933;">.</span>gz <span style="color: #0000ff;">&quot;.<span style="color: #006699; font-weight: bold;">$whatBackup</span>.&quot;</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>The above sucks for a couple reasons. For one, it requires a pretty large security hole to not be plugged; exec allows piping commands to the OS directly. For another, the above method will only work on Linux; Windows doesn&#8217;t have a &#8220;tar&#8221; command.</p>
<p>The biggest reason the above sucked, for me at least, was that the layman doesn&#8217;t understand the tar.gz file extension. I can&#8217;t count the number of times I&#8217;ve had to explain to a client or colleague that tar.gz is, as far as their needs go, that tar.gz is ok. &#8220;You can open it in WinZip or WinRar.&#8221;, I&#8217;d say. Sigh&#8230;  </p>
<h3>Enter PclZip </h3>
<p><a href="http://www.phpconcept.net/pclzip/index.en.php" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Findex.en.php','PclZip')" title="PclZip" target="_blank">PclZip</a> is a php class that creates and manage ZIP formatted archives. PclZip works on both Windows and Linux and is pretty easy to use. There&#8217;s a pretty extensive <a href="http://www.phpconcept.net/pclzip/man/en/index.php" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php','PclZip+User+Manual')" target="_blank" title="PclZip User Manual">user manual</a> too.</p>
<p>I first heard about it while writing the WordPress plugin iTunes-Data. I wanted to allow the upload of the iTunes XML files but mine was over 10MB so testing was becoming&#8230; inconvenient. I knew WordPress could manipulate zip archives so I took a look under the hood and the was PclZip.</p>
<p>Anyway, you can create zip files, remove files from existing zip files and extract zip files using the PclZip class. Below are a couple examples of how to do each.</p>
<h4>The Basics</h4>
<p>The most important thing to know about using PclZip is that the PclZip object must be instantiated with a &#8220;.zip&#8221; file being passed. It doesn&#8217;t matter if you&#8217;re creating, extracting or modifying, you have to pass the file you want to manipulate before you do anything else.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #22f;">require_once</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">'pclzip.lib.php'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$archive</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PclZip<span style="color: #000;">&#40;</span><span style="color: #0000ff;">'tmp/archive.zip'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h4>Optional Arguments</h4>
<p>PclZip allows for detailed control over archives through the use of <a href="http://www.phpconcept.net/pclzip/man/en/index.php?options" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions','PclZip+Optional+Arguments')" title="PclZip Optional Arguments" target="_blank">optional arguments</a> that get passed at the tail end of functions. According to the official site:</p>
<blockquote><p>
The optional arguments are identified by a name, which is in reality a static integer value. The value of the argument can be a single value or a list of values. In some cases they does not take a value, their name is enought to indicate a specific action to the method.
</p></blockquote>
<p>There&#8217;s far too many arguments you can use so I won&#8217;t bother listing them all here but there&#8217;s a complete list at the end of the article.</p>
<h4>Create a Zip File</h4>
<p>To create a zip file you have to pass the name of the archive you want to create to the object. The file passed will be where to the archive will be created. </p>
<p>You can include multiple files by either passing the directory, if you want the entire directory or by using a couple different methods to pass individual files and directories; arrays or a csv string.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #22f;">require_once</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">'pclzip.lib.php'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$archive</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PclZip<span style="color: #000;">&#40;</span><span style="color: #0000ff;">'tmp/archive.zip'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//includes the file &quot;debug.cl&quot; and the directory &quot;logs&quot;</span>
<span style="color: #000088;">$files</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'./debug.cl,./logs/'</span><span style="color: #339933;">;</span>
<span style="color: #22f;">if</span> <span style="color: #000;">&#40;</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">create</span><span style="color: #000;">&#40;</span><span style="color: #000088;">$files</span><span style="color: #000;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #000;">&#41;</span> <span style="color: #000;">&#123;</span>
	<span style="color: #990000;">die</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">'Error : '</span><span style="color: #339933;">.</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">errorInfo</span><span style="color: #000;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #000;">&#41;</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>or</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #22f;">require_once</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">'pclzip.lib.php'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$archive</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PclZip<span style="color: #000;">&#40;</span><span style="color: #0000ff;">'tmp/archive.zip'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//same as above</span>
<span style="color: #000088;">$files</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">'./debug.cl'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'./logs/'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #22f;">if</span> <span style="color: #000;">&#40;</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">create</span><span style="color: #000;">&#40;</span><span style="color: #000088;">$files</span><span style="color: #000;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #000;">&#41;</span> <span style="color: #000;">&#123;</span>
	<span style="color: #990000;">die</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">'Error : '</span><span style="color: #339933;">.</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">errorInfo</span><span style="color: #000;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #000;">&#41;</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h4>Extracting Files from Archive</h4>
<p>There are quite a few options for extracting files from a zip archive. PclZip contains a pretty extensive filtering mechanism that allows for some pretty selective extractions.</p>
<p>By default when extracting the files from an archive PclZip puts the files relative to where the script is executed.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$archive</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PclZip<span style="color: #000;">&#40;</span><span style="color: #0000ff;">'tmp/archive.zip'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #22f;">if</span> <span style="color: #000;">&#40;</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extract</span><span style="color: #000;">&#40;</span><span style="color: #000;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #000;">&#41;</span> <span style="color: #000;">&#123;</span>
	<span style="color: #990000;">die</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">&quot;Error : &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">errorInfo</span><span style="color: #000;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #000;">&#41;</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000;">&#125;</span></pre></div></div>

<p>You can explicitly state where the archive files are extracted by setting a value to the &#8220;PCLZIP_OPT_PATH&#8221; parameter. The below extracts all the files to the &#8220;./tmp&#8221; directory:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$archive</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PclZip<span style="color: #000;">&#40;</span><span style="color: #0000ff;">'tmp/archive.zip'</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #22f;">if</span> <span style="color: #000;">&#40;</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">extract</span><span style="color: #000;">&#40;</span>PCLZIP_OPT_PATH<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;./tmp&quot;</span><span style="color: #000;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #000;">&#41;</span> <span style="color: #000;">&#123;</span>
	<span style="color: #990000;">die</span><span style="color: #000;">&#40;</span><span style="color: #0000ff;">&quot;Error : &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$archive</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">errorInfo</span><span style="color: #000;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #000;">&#41;</span><span style="color: #000;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000;">&#125;</span></pre></div></div>

<h3>Optional Argument List</h3>
<p><a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_path" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_path','PclZip+PCLZIP_OPT_PATH')" target="_blank" title="PclZip PCLZIP_OPT_PATH">PCLZIP_OPT_PATH</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_add_path" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_path','PclZip+PCLZIP_OPT_ADD_PATH')" target="_blank" title="PclZip PCLZIP_OPT_ADD_PATH">PCLZIP_OPT_ADD_PATH</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_remove_path" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_remove_path','PclZip+PCLZIP_OPT_REMOVE_PATH')" target="_blank" title="PclZip PCLZIP_OPT_REMOVE_PATH">PCLZIP_OPT_REMOVE_PATH</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_remove_all_path" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_remove_all_path','PclZip+PCLZIP_OPT_REMOVE_ALL_PATH')" target="_blank" title="PclZip PCLZIP_OPT_REMOVE_ALL_PATH">PCLZIP_OPT_REMOVE_ALL_PATH</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_set_chmod" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_set_chmod','PclZip+PCLZIP_OPT_SET_CHMOD')" target="_blank" title="PclZip PCLZIP_OPT_SET_CHMOD">PCLZIP_OPT_SET_CHMOD</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_by_name" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_by_name','PclZip+PCLZIP_OPT_BY_NAME')" target="_blank" title="PclZip PCLZIP_OPT_BY_NAME">PCLZIP_OPT_BY_NAME</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_by_ereg" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_by_ereg','PclZip+PCLZIP_OPT_BY_EREG')" target="_blank" title="PclZip PCLZIP_OPT_BY_EREG">PCLZIP_OPT_BY_EREG</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_by_preg" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_by_preg','PclZip+PCLZIP_OPT_BY_PREG')" target="_blank" title="PclZip PCLZIP_OPT_BY_PREG">PCLZIP_OPT_BY_PREG</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_by_index" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_by_index','PclZip+PCLZIP_OPT_BY_INDEX')" target="_blank" title="PclZip PCLZIP_OPT_BY_INDEX">PCLZIP_OPT_BY_INDEX</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_extract_as_string" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_extract_as_string','PclZip+PCLZIP_OPT_EXTRACT_AS_STRING')" target="_blank" title="PclZip PCLZIP_OPT_EXTRACT_AS_STRING">PCLZIP_OPT_EXTRACT_AS_STRING</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_extract_in_output" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_extract_in_output','PclZip+PCLZIP_OPT_EXTRACT_IN_OUTPUT')" target="_blank" title="PclZip PCLZIP_OPT_EXTRACT_IN_OUTPUT">PCLZIP_OPT_EXTRACT_IN_OUTPUT</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_no_compression" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_no_compression','PclZip+PCLZIP_OPT_NO_COMPRESSION')" target="_blank" title="PclZip PCLZIP_OPT_NO_COMPRESSION">PCLZIP_OPT_NO_COMPRESSION</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_comment" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_comment','PclZip+PCLZIP_OPT_COMMENT')" target="_blank" title="PclZip PCLZIP_OPT_COMMENT">PCLZIP_OPT_COMMENT</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_add_comment" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_comment','PclZip+PCLZIP_OPT_ADD_COMMENT')" target="_blank" title="PclZip PCLZIP_OPT_ADD_COMMENT">PCLZIP_OPT_ADD_COMMENT</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_prepend_comment" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_prepend_comment','PclZip+PCLZIP_OPT_PREPEND_COMMENT')" target="_blank" title="PclZip PCLZIP_OPT_PREPEND_COMMENT">PCLZIP_OPT_PREPEND_COMMENT</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_replace_newer" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_replace_newer','PclZip+PCLZIP_OPT_REPLACE_NEWER')" target="_blank" title="PclZip PCLZIP_OPT_REPLACE_NEWER">PCLZIP_OPT_REPLACE_NEWER</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_extract_dir_restriction" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_extract_dir_restriction','PclZip+PCLZIP_OPT_EXTRACT_DIR_RESTRICTION')" target="_blank" title="PclZip PCLZIP_OPT_EXTRACT_DIR_RESTRICTION">PCLZIP_OPT_EXTRACT_DIR_RESTRICTION</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_add_temp_file_on" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_OFF')" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD')" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_ON')" target="_blank" title="PclZip PCLZIP_OPT_ADD_TEMP_FILE_ON">PCLZIP_OPT_ADD_TEMP_FILE_ON</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_add_temp_file_on" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_OFF')" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD')" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_ON')" target="_blank" title="PclZip PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD">PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD</a><br />
<a href="http://www.phpconcept.net/pclzip/man/en/index.php?options-pclzip_opt_add_temp_file_on" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_OFF')" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD')" onclick="return TrackClick('http%3A%2F%2Fwww.phpconcept.net%2Fpclzip%2Fman%2Fen%2Findex.php%3Foptions-pclzip_opt_add_temp_file_on','PclZip+PCLZIP_OPT_ADD_TEMP_FILE_ON')" target="_blank" title="PclZip PCLZIP_OPT_ADD_TEMP_FILE_OFF">PCLZIP_OPT_ADD_TEMP_FILE_OFF</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ericlamb.net/2009/04/manipulate-zip-files-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
