<?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>no library | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/no-library/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 10 Dec 2022 05:29:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>How to Extract or Unzip files from a .zip file using PHP</title>
		<link>https://studentprojects.in/software-development/php-mysql/php-tutorial/extract-unzip-files-zip-file-php/</link>
					<comments>https://studentprojects.in/software-development/php-mysql/php-tutorial/extract-unzip-files-zip-file-php/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Thu, 01 Sep 2011 08:40:51 +0000</pubDate>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[extract files]]></category>
		<category><![CDATA[unzip usng php]]></category>
		<category><![CDATA[no library]]></category>
		<category><![CDATA[pclzip.lib]]></category>
		<category><![CDATA[php extract]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1791</guid>

					<description><![CDATA[<p>Here is the simple code which will extract a zip file. Here we are using pclzip.lib file to extract files. You no need to install any other library to your server. First download pclzip.lib file. Now use the below code to extract your zip file. unzip &#124; studentprojects.in</p>
<p>The post <a href="https://studentprojects.in/software-development/php-mysql/php-tutorial/extract-unzip-files-zip-file-php/">How to Extract or Unzip files from a .zip file using PHP</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Here is the simple code which will extract a zip file. Here we are using pclzip.lib file to extract files. You no need to install any other library to your server. </p>
<p>First download <a href="https://studentprojects.in/wp-content/uploads/2011/09/pclzip.lib_.zip">pclzip.lib</a> file.</p>
<p>Now use the below code to extract your zip file. </p>
<pre lang="php" escaped="true" line="1">
<html>
<head><title>unzip | studentprojects.in</title>
</head>
<body>
<?php	
require_once('pclzip.lib.php'); 
$zipfile = new PclZip('filename.zip');
if ($zipfile -> extract() == 0) {
	echo 'Error : ' . $zipfile -> errorInfo(true);
}else{
	echo 'File Extracted!';
} 
?>
</body>
</html>

</pre><p>The post <a href="https://studentprojects.in/software-development/php-mysql/php-tutorial/extract-unzip-files-zip-file-php/">How to Extract or Unzip files from a .zip file using PHP</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/php-mysql/php-tutorial/extract-unzip-files-zip-file-php/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
