PageRenderTime 43ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/php-pear-PHP-CompatInfo-1.9.0/PHP_CompatInfo-1.9.0/docs/examples/cliCustom.php

#
PHP | 21 lines | 5 code | 1 blank | 15 comment | 0 complexity | bf5692931bec276d2e0be6f64e804ed9 MD5 | raw file
  1. <?php
  2. /**
  3. * How to cutomize CLI output version. Requires at least version 1.3.1
  4. *
  5. * PHP versions 4 and 5
  6. *
  7. * @category PHP
  8. * @package PHP_CompatInfo
  9. * @author Laurent Laville <pear@laurent-laville.org>
  10. * @license http://www.opensource.org/licenses/bsd-license.php BSD
  11. * @version CVS: $Id: cliCustom.php,v 1.5 2008/07/22 21:09:37 farell Exp $
  12. * @link http://pear.php.net/package/PHP_CompatInfo
  13. * @ignore
  14. * @deprecated since version 1.8.0b2
  15. */
  16. require_once 'PHP/CompatInfo/Cli.php';
  17. // split filename to 30 char. max and continuation char. is +
  18. $cli = new PHP_CompatInfo_Cli(30, '+');
  19. $cli->run();
  20. ?>