PHP Classes

File: docs/ej1.php

Recommend this page to a friend!
  Classes of Jose Manuel Busto   Rar for PHP   docs/ej1.php   Download  
File: docs/ej1.php
Role: Example script
Content type: text/plain
Description: Simple example of use
Class: Rar for PHP
Pack files in compressed RAR archives
Author: By
Last change:
Date: 17 years ago
Size: 327 bytes
 

Contents

Class file image Download
<?PHP
/***********************************

Ejemplo de compresion

***********************************/
require_once("../rar.php");
$rarfile=new rar("c:/archivo.rar"); //Crear el objeto "rar" y darle el nombre del archivo objetivo.
$rarfile->addfile("c:/comprimir.txt"); //Aņadir un fichero al archivo rar.
?>