Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * Function 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: func_array.php,v 1.16 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/bcmath_func_array.php';
18
require_once 'PHP/CompatInfo/calendar_func_array.php';
19
require_once 'PHP/CompatInfo/ctype_func_array.php';
20
require_once 'PHP/CompatInfo/date_func_array.php';
21
require_once 'PHP/CompatInfo/dom_func_array.php';
22
require_once 'PHP/CompatInfo/filter_func_array.php';
23
require_once 'PHP/CompatInfo/ftp_func_array.php';
24
require_once 'PHP/CompatInfo/gd_func_array.php';
25
require_once 'PHP/CompatInfo/gettext_func_array.php';
26
require_once 'PHP/CompatInfo/hash_func_array.php';
27
require_once 'PHP/CompatInfo/iconv_func_array.php';
28
require_once 'PHP/CompatInfo/json_func_array.php';
29
require_once 'PHP/CompatInfo/libxml_func_array.php';
30
require_once 'PHP/CompatInfo/mbstring_func_array.php';
31
require_once 'PHP/CompatInfo/mysql_func_array.php';
32
require_once 'PHP/CompatInfo/mysqli_func_array.php';
33
require_once 'PHP/CompatInfo/openssl_func_array.php';
34
require_once 'PHP/CompatInfo/pcre_func_array.php';
35
require_once 'PHP/CompatInfo/pgsql_func_array.php';
36
require_once 'PHP/CompatInfo/session_func_array.php';
37
require_once 'PHP/CompatInfo/SimpleXML_func_array.php';
38
require_once 'PHP/CompatInfo/SPL_func_array.php';
39
require_once 'PHP/CompatInfo/SQLite_func_array.php';
40
require_once 'PHP/CompatInfo/standard_func_array.php';
41
require_once 'PHP/CompatInfo/tokenizer_func_array.php';
42
require_once 'PHP/CompatInfo/wddx_func_array.php';
43
require_once 'PHP/CompatInfo/xml_func_array.php';
44
require_once 'PHP/CompatInfo/xmlwriter_func_array.php';
45
 
46
/**
47
 * Predefined Functions
48
 *
49
 * @global array $GLOBALS['_PHP_COMPATINFO_FUNCS']
50
 */
51
 
52
$GLOBALS['_PHP_COMPATINFO_FUNCS'] = array_merge(
53
    $GLOBALS['_PHP_COMPATINFO_FUNC_BCMATH'],
54
    $GLOBALS['_PHP_COMPATINFO_FUNC_CALENDAR'],
55
    $GLOBALS['_PHP_COMPATINFO_FUNC_CTYPE'],
56
    $GLOBALS['_PHP_COMPATINFO_FUNC_DATE'],
57
    $GLOBALS['_PHP_COMPATINFO_FUNC_DOM'],
58
    $GLOBALS['_PHP_COMPATINFO_FUNC_FILTER'],
59
    $GLOBALS['_PHP_COMPATINFO_FUNC_FTP'],
60
    $GLOBALS['_PHP_COMPATINFO_FUNC_GD'],
61
    $GLOBALS['_PHP_COMPATINFO_FUNC_GETTEXT'],
62
    $GLOBALS['_PHP_COMPATINFO_FUNC_HASH'],
63
    $GLOBALS['_PHP_COMPATINFO_FUNC_ICONV'],
64
    $GLOBALS['_PHP_COMPATINFO_FUNC_JSON'],
65
    $GLOBALS['_PHP_COMPATINFO_FUNC_LIBXML'],
66
    $GLOBALS['_PHP_COMPATINFO_FUNC_MBSTRING'],
67
    $GLOBALS['_PHP_COMPATINFO_FUNC_MYSQL'],
68
    $GLOBALS['_PHP_COMPATINFO_FUNC_MYSQLI'],
69
    $GLOBALS['_PHP_COMPATINFO_FUNC_OPENSSL'],
70
    $GLOBALS['_PHP_COMPATINFO_FUNC_PCRE'],
71
    $GLOBALS['_PHP_COMPATINFO_FUNC_PGSQL'],
72
    $GLOBALS['_PHP_COMPATINFO_FUNC_SESSION'],
73
    $GLOBALS['_PHP_COMPATINFO_FUNC_SIMPLEXML'],
74
    $GLOBALS['_PHP_COMPATINFO_FUNC_SPL'],
75
    $GLOBALS['_PHP_COMPATINFO_FUNC_SQLITE'],
76
    $GLOBALS['_PHP_COMPATINFO_FUNC_STANDARD'],
77
    $GLOBALS['_PHP_COMPATINFO_FUNC_TOKENIZER'],
78
    $GLOBALS['_PHP_COMPATINFO_FUNC_WDDX'],
79
    $GLOBALS['_PHP_COMPATINFO_FUNC_XML'],
80
    $GLOBALS['_PHP_COMPATINFO_FUNC_XMLWRITER']
81
    );
82
?>