Installation
Rar is currently available through PECL » http://pecl.php.net/package/rar.
Also you can use the PECL installer to install the Rar extension, using the following command: pecl -v install rar.
You can always download the tar.gz package and install Rar by hand:
Example #1 Rar installation
gunzip rar-xxx.tgz tar -xvf rar-xxx.tar cd rar-xxx phpize ./configure && make && make install
Windows users will enable php_rar.dll inside of php.ini in order to use these functions. A DLL for this PECL extension is currently unavailable. See also the building on Windows section.
Коментарии
After installing RAR 2.0.0 extension in PHP 5.3.3 on OpenSUSE 11.3 using pecl command line, i had to enable it by creating a file named
/etc/php5/conf.d/rar.ini
which contains this line
extension=rar.so
Windows users download php_rar.dll at http://pecl.php.net/package/rar
0. click the DLL link for Windows
1. download php_rar.dll for your php version
2. copy php_rar.dll to the "ext" folder
3. append the following directive to the [php] section of your working php.ini, you can search "extension=" and append it to the last extension directive.
extension=php_rar.dll
4. restart your web server and enjoy.