Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * BUG #11524 Fatal error with $pear_dir parameter
4
 *
5
 * PHP versions 4 and 5
6
 *
7
 * @category PEAR
8
 * @package  PEAR_Info
9
 * @author   Laurent Laville <pear@laurent-laville.org>
10
 * @license  http://www.php.net/license/3_01.txt  PHP License 3.01
11
 * @version  CVS: $Id: pear_info7.php,v 1.3 2008/10/12 16:21:24 farell Exp $
12
 * @link     http://pear.php.net/package/PEAR_Info
13
 * @link     http://pear.php.net/bugs/bug.php?id=11524
14
 * @ignore
15
 */
16
 
17
// require the PEAR_Info file
18
require_once 'PEAR/Info.php';
19
 
20
// Create PEAR_Info object
21
$info = new PEAR_Info('c:\wamp\bin\php\php5.2.6');
22
 
23
// Display PEAR_Info output
24
$info->display();
25
?>