Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * Get PHP functions and constants history from a range of version,
4
 * group by version number
5
 *
6
 * This example show the new options|features available with API 1.8.0
7
 *
8
 * PHP versions 4 and 5
9
 *
10
 * @category PHP
11
 * @package  PHP_CompatInfo
12
 * @author   Laurent Laville <pear@laurent-laville.org>
13
 * @license  http://www.opensource.org/licenses/bsd-license.php  BSD
14
 * @version  CVS: $Id: pci180_loadversion.php,v 1.3 2008/07/22 20:26:45 farell Exp $
15
 * @link     http://pear.php.net/package/PHP_CompatInfo
16
 * @since    version 1.8.0RC2 (2008-07-18)
17
 * @ignore
18
 */
19
 
20
require_once 'PHP/CompatInfo.php';
21
 
22
$compatInfo = new PHP_CompatInfo();
23
 
24
$r = $compatInfo->loadVersion('4.3.2', '4.4.0', true, true);
25
var_export($r);
26
?>