Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 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
 
18
// split filename to 30 char. max and continuation char. is +
19
$cli = new PHP_CompatInfo_Cli(30, '+');
20
$cli->run();
21
?>