| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/www/cj79373/administrator/components/com_extplorer/libraries/ |
Upload File : |
<?php
/**
* PHP 4.1.x Compatibility functions
*/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
if (!function_exists( 'array_change_key_case' )) {
if (!defined('CASE_LOWER')) {
define('CASE_LOWER', 0);
}
if (!defined('CASE_UPPER')) {
define('CASE_UPPER', 1);
}
function array_change_key_case( $input, $case=CASE_LOWER ) {
if (!is_array( $input )) {
return false;
}
$array = array();
foreach ($input as $k=>$v) {
if ($case) {
$array[strtoupper( $k )] = $v;
} else {
$array[strtolower( $k )] = $v;
}
}
return $array;
}
}
/**
* Add functionanlity of html_entity_decode() to PHP under 4.3
*
* @category PHP
* @package PHP_Compat
* @link http://php.net/function.html_entity_decode
* @since PHP 4.3
* @require PHP 4.0.1
*/
if (!function_exists('html_entity_decode')) {
function html_entity_decode($string)
{
// Replace numeric
$string = preg_replace('~&#x([0-9a-f]+);~ei', 'chr(hexdec("\\1"))', $string);
$string = preg_replace('~&#([0-9]+);~e', 'chr(\\1)', $string);
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
$trans_tbl = array_flip($trans_tbl);
return strtr($string, $trans_tbl);
}
}
?>