本文實例講述了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 = '/full/path/to/file.rar' $entry_name = 'path/to/archive/entry.txt'; //notice: no slash at the beginning $dir_to_extract_to = '/path/to/extract/dir'; $new_entry_name = 'some.txt'; $rar = rar_open($archive_name) OR die('failed to open ' . $archive_name); $entry = rar_entry_get($rar, $entry_name) OR die('failed to find ' . $entry_name . ' in ' . $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('', $dir_to_extract_to.'/'.$new_entry_name); // this line is really not necessary rar_close($rar); ?>