Source for file Compat.php
Documentation is available at Compat.php
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2004 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 3.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/3_0.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Aidan Lister <aidan@php.net> |
// +----------------------------------------------------------------------+
// $Id: Compat.php,v 1.17 2004/11/23 09:25:40 aidan Exp $
* Provides missing functionality in the form of constants and functions
* for older versions of PHP
* Optionally, you may simply include the file.
* e.g. require_once 'PHP/Compat/Function/scandir.php';
* @version $Revision: 1.17 $
* @author Aidan Lister <aidan@php.net>
* Load a function, or array of functions
* @param string|array $function The function or functions to load
* @return bool|array TRUE if loaded, FALSE if not
foreach ($function as $singlefunc) {
$file = sprintf('PHP/Compat/Function/%s.php', $function);
if ((@include_once $file) !== false ) {
* Load a constant, or array of constants
* @param string|array $constant The constant or constants to load
* @return bool|array TRUE if loaded, FALSE if not
foreach ($constant as $singleconst) {
$file = sprintf('PHP/Compat/Constant/%s.php', $constant);
if ((@include_once $file) !== false ) {
* Load components for a PHP version
* @param string $version PHP Version to load
* @return array An associative array of component names loaded
require_once 'Compat/Components.php';
foreach ($components as $type => $slice) {
$loadfunc = 'load' . $type;
foreach ($slice as $component => $compversion) {
if ($version === null || ($vc === 0 && $vp === -1 )) {
$res[$component] = PHP_Compat::$loadfunc($component);
Documentation generated on Mon, 11 Mar 2019 13:58:54 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|