PageRenderTime 51ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/php-pear-PHP-CompatInfo-1.9.0/PHP_CompatInfo-1.9.0/CompatInfo/class_array.php

#
PHP | 65 lines | 26 code | 3 blank | 36 comment | 0 complexity | 6f5592b8025380139edb514e2e9fa938 MD5 | raw file
  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. require_once 'PHP/CompatInfo/date_class_array.php';
  17. require_once 'PHP/CompatInfo/dom_class_array.php';
  18. require_once 'PHP/CompatInfo/libxml_class_array.php';
  19. require_once 'PHP/CompatInfo/mysqli_class_array.php';
  20. require_once 'PHP/CompatInfo/SimpleXML_class_array.php';
  21. require_once 'PHP/CompatInfo/SPL_class_array.php';
  22. require_once 'PHP/CompatInfo/SQLite_class_array.php';
  23. require_once 'PHP/CompatInfo/standard_class_array.php';
  24. require_once 'PHP/CompatInfo/xmlreader_class_array.php';
  25. require_once 'PHP/CompatInfo/xmlwriter_class_array.php';
  26. require_once 'PHP/CompatInfo/xsl_class_array.php';
  27. /**
  28. * Predefined Classes
  29. *
  30. * > Standard Defined Classes
  31. * These classes are defined in the standard set of functions included in
  32. * the PHP build.
  33. * - Directory
  34. * - stdClass
  35. * - __PHP_Incomplete_Class
  36. *
  37. * > Predefined classes as of PHP 5
  38. * These additional predefined classes were introduced in PHP 5.0.0
  39. * - Exception
  40. * - php_user_filter
  41. *
  42. * > Miscellaneous extensions
  43. * define other classes which are described in their reference.
  44. *
  45. * @link http://www.php.net/manual/en/function.get-declared-classes.php
  46. * @link http://www.php.net/manual/en/reserved.classes.php
  47. * @global array $GLOBALS['_PHP_COMPATINFO_CLASS']
  48. */
  49. $GLOBALS['_PHP_COMPATINFO_CLASS'] = array_merge(
  50. $GLOBALS['_PHP_COMPATINFO_CLASS_DATE'],
  51. $GLOBALS['_PHP_COMPATINFO_CLASS_DOM'],
  52. $GLOBALS['_PHP_COMPATINFO_CLASS_LIBXML'],
  53. $GLOBALS['_PHP_COMPATINFO_CLASS_MYSQLI'],
  54. $GLOBALS['_PHP_COMPATINFO_CLASS_SIMPLEXML'],
  55. $GLOBALS['_PHP_COMPATINFO_CLASS_SPL'],
  56. $GLOBALS['_PHP_COMPATINFO_CLASS_SQLITE'],
  57. $GLOBALS['_PHP_COMPATINFO_CLASS_STANDARD'],
  58. $GLOBALS['_PHP_COMPATINFO_CLASS_XMLREADER'],
  59. $GLOBALS['_PHP_COMPATINFO_CLASS_XMLWRITER'],
  60. $GLOBALS['_PHP_COMPATINFO_CLASS_XSL']
  61. );
  62. ?>