Packer.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Class Minify_Packer
  4. *
  5. * To use this class you must first download the PHP port of Packer
  6. * and place the file "class.JavaScriptPacker.php" in /lib (or your
  7. * include_path).
  8. * @link http://joliclic.free.fr/php/javascript-packer/en/
  9. *
  10. * Be aware that, as long as HTTP encoding is used, scripts minified with JSMin
  11. * will provide better client-side performance, as they need not be unpacked in
  12. * client-side code.
  13. *
  14. * @package Minify
  15. */
  16. if (false === (@include 'class.JavaScriptPacker.php')) {
  17. trigger_error(
  18. 'The script "class.JavaScriptPacker.php" is required. Please see: http:'
  19. .'//code.google.com/p/minify/source/browse/trunk/min/lib/Minify/Packer.php'
  20. ,E_USER_ERROR
  21. );
  22. }
  23. /**
  24. * Minify Javascript using Dean Edward's Packer
  25. *
  26. * @package Minify
  27. */
  28. class Minify_Packer {
  29. public static function minify($code, $options = array())
  30. {
  31. // @todo: set encoding options based on $options :)
  32. $packer = new JavascriptPacker($code, 'Normal', true, false);
  33. return trim($packer->pack());
  34. }
  35. }