Source for file Compat.php
Documentation is available at Compat.php
// $Id: Compat.php,v 1.23 2007/06/16 11:13:27 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';
* @license LGPL - http://www.gnu.org/licenses/lgpl.html
* @copyright 2004-2007 Aidan Lister <aidan@php.net>, Arpad Ray <arpad@php.net>
* @version $Revision: 1.23 $
* @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) {
// Check for packages which can modify the function table at runtime
$symbolfuncs = array ('rename_function', 'runkit_rename_function');
foreach ($symbolfuncs as $symbolfunc) {
$renamedfunction = 'php_compat_renamed' . $function;
// Rename the core function
rename_function ($function, $renamedfunction);
$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 ) {
* @param string $environment The environment to load
* @param string $setting Turn the environment on or off
* @return bool TRUE if loaded, FALSE if not
$file = sprintf('PHP/Compat/Environment/%s_%s.php', $environment, $setting);
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
// Include list of components
require 'PHP/Compat/Components.php';
// Include version_compare to work with older versions
'function' => 'loadFunction',
'constant' => 'loadConstant');
// Iterate each component
foreach ($components as $type => $slice) {
foreach ($slice as $component => $compversion) {
if (($version === null &&
$res[$type][$component] =
Documentation generated on Mon, 11 Mar 2019 15:26:34 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|