Text_Huffman
[ class tree: Text_Huffman ] [ index: Text_Huffman ] [ all elements ]

Source for file example_compress.php

Documentation is available at example_compress.php

  1. <?php
  2.  
  3.  
  4. require 'Text/HuffmanCompress.php';
  5.  
  6.  
  7. $hc = new Text_HuffmanCompress();
  8.  
  9. try {
  10.     $hc->setFiles("sample_orig.txt""sample_compressed.txt");
  11.     $hc->compress();
  12.     
  13.     echo "Done.";
  14. catch (Exception $e{
  15.     echo $e->getMessage();    
  16. }
  17.  
  18. ?>

Documentation generated on Mon, 11 Mar 2019 13:54:22 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.