首頁  >  文章  >  後端開發  >  php安裝php_rar擴充實作rar檔讀取與解壓縮的方法

php安裝php_rar擴充實作rar檔讀取與解壓縮的方法

高洛峰
高洛峰原創
2016-12-12 10:24:272041瀏覽

本文實例講述了php安裝php_rar擴充實作rar檔讀取和解壓縮的方法。分享給大家供大家參考,如下:

PHP Rar Archiving 模組 (php_rar) 是一個讀取和解壓rar檔案的模組,但不提供RAR壓縮(打包)的功能。

1.首先要到PECL的RAR頁面下載DLL. 根據自己的情況選擇下載對應版本的DLL.

PHP版本要求:php_rar模組適用於php 5.2及以上, 不過對於windows系統,似乎只有php5.3 / 5.4對應的DLL下載。

2.下載到的是zip包,將其中的php_rar.pdb和php_rar.dll兩個檔案解壓縮到PHP安裝目錄下的ext子目錄。

3.在php.ini加入一行php_rar擴充引用宣告 extension=php_rar.dll

4.如果使用Apache伺服器,就需要重新啟動Apache。 IIS下以FastCGI模式載入的PHP則不需要進一步操作了。

5.寫個測試檔案看看有沒有問題啊

6.如果有問題,查看伺服器的日誌檔案。

附官方的測試程式碼test-rar.php :

<?php
$archive_name = &#39;/full/path/to/file.rar&#39;
$entry_name = &#39;path/to/archive/entry.txt&#39;; //notice: no slash at the beginning
$dir_to_extract_to = &#39;/path/to/extract/dir&#39;;
$new_entry_name = &#39;some.txt&#39;;
$rar = rar_open($archive_name) OR die(&#39;failed to open &#39; . $archive_name);
$entry = rar_entry_get($rar, $entry_name) OR die(&#39;failed to find &#39; . $entry_name . &#39; in &#39; . $archive_name);
// this will create all necessary subdirs under $dir_to_extract_to
$entry->extract($dir_to_extract_to);
/* OR */
// this will create only one new file $new_entry_name in $dir_to_extract_to
$entry->extract(&#39;&#39;, $dir_to_extract_to.&#39;/&#39;.$new_entry_name);
// this line is really not necessary
rar_close($rar);
?>

   


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn