| 1 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Class dictionary for PHP_CompatInfo 1.9.0a1 or better
|
|
|
4 |
*
|
|
|
5 |
* PHP versions 4 and 5
|
|
|
6 |
*
|
|
|
7 |
* @category PHP
|
|
|
8 |
* @package PHP_CompatInfo
|
|
|
9 |
* @author Davey Shafik <davey@php.net>
|
|
|
10 |
* @author Laurent Laville <pear@laurent-laville.org>
|
|
|
11 |
* @license http://www.opensource.org/licenses/bsd-license.php BSD
|
|
|
12 |
* @version CVS: $Id: class_array.php,v 1.3 2009/01/03 10:52:05 farell Exp $
|
|
|
13 |
* @link http://pear.php.net/package/PHP_CompatInfo
|
|
|
14 |
* @since version 1.9.0a1 (2008-11-23)
|
|
|
15 |
*/
|
|
|
16 |
|
|
|
17 |
require_once 'PHP/CompatInfo/date_class_array.php';
|
|
|
18 |
require_once 'PHP/CompatInfo/dom_class_array.php';
|
|
|
19 |
require_once 'PHP/CompatInfo/libxml_class_array.php';
|
|
|
20 |
require_once 'PHP/CompatInfo/mysqli_class_array.php';
|
|
|
21 |
require_once 'PHP/CompatInfo/SimpleXML_class_array.php';
|
|
|
22 |
require_once 'PHP/CompatInfo/SPL_class_array.php';
|
|
|
23 |
require_once 'PHP/CompatInfo/SQLite_class_array.php';
|
|
|
24 |
require_once 'PHP/CompatInfo/standard_class_array.php';
|
|
|
25 |
require_once 'PHP/CompatInfo/xmlreader_class_array.php';
|
|
|
26 |
require_once 'PHP/CompatInfo/xmlwriter_class_array.php';
|
|
|
27 |
require_once 'PHP/CompatInfo/xsl_class_array.php';
|
|
|
28 |
|
|
|
29 |
/**
|
|
|
30 |
* Predefined Classes
|
|
|
31 |
*
|
|
|
32 |
* > Standard Defined Classes
|
|
|
33 |
* These classes are defined in the standard set of functions included in
|
|
|
34 |
* the PHP build.
|
|
|
35 |
* - Directory
|
|
|
36 |
* - stdClass
|
|
|
37 |
* - __PHP_Incomplete_Class
|
|
|
38 |
*
|
|
|
39 |
* > Predefined classes as of PHP 5
|
|
|
40 |
* These additional predefined classes were introduced in PHP 5.0.0
|
|
|
41 |
* - Exception
|
|
|
42 |
* - php_user_filter
|
|
|
43 |
*
|
|
|
44 |
* > Miscellaneous extensions
|
|
|
45 |
* define other classes which are described in their reference.
|
|
|
46 |
*
|
|
|
47 |
* @link http://www.php.net/manual/en/function.get-declared-classes.php
|
|
|
48 |
* @link http://www.php.net/manual/en/reserved.classes.php
|
|
|
49 |
* @global array $GLOBALS['_PHP_COMPATINFO_CLASS']
|
|
|
50 |
*/
|
|
|
51 |
|
|
|
52 |
$GLOBALS['_PHP_COMPATINFO_CLASS'] = array_merge(
|
|
|
53 |
$GLOBALS['_PHP_COMPATINFO_CLASS_DATE'],
|
|
|
54 |
$GLOBALS['_PHP_COMPATINFO_CLASS_DOM'],
|
|
|
55 |
$GLOBALS['_PHP_COMPATINFO_CLASS_LIBXML'],
|
|
|
56 |
$GLOBALS['_PHP_COMPATINFO_CLASS_MYSQLI'],
|
|
|
57 |
$GLOBALS['_PHP_COMPATINFO_CLASS_SIMPLEXML'],
|
|
|
58 |
$GLOBALS['_PHP_COMPATINFO_CLASS_SPL'],
|
|
|
59 |
$GLOBALS['_PHP_COMPATINFO_CLASS_SQLITE'],
|
|
|
60 |
$GLOBALS['_PHP_COMPATINFO_CLASS_STANDARD'],
|
|
|
61 |
$GLOBALS['_PHP_COMPATINFO_CLASS_XMLREADER'],
|
|
|
62 |
$GLOBALS['_PHP_COMPATINFO_CLASS_XMLWRITER'],
|
|
|
63 |
$GLOBALS['_PHP_COMPATINFO_CLASS_XSL']
|
|
|
64 |
);
|
|
|
65 |
?>
|