HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cloudlinux/alt-php54/root/usr/share/pear/RVSeagullMod/etc/bc.php
<?php
    //  BACKWARDS COMPATIBILITY WITH PHP VERSIONS < 4.2.0
    //  BC for is_a()
    if (!function_exists('is_a')) {
        function is_a($object, $className)
        {
            return ((strtolower($className) == get_class($object))
            || (is_subclass_of($object, $className)));
        }
    }

    //  BC for file_get_contents()
    if (!function_exists('file_get_contents')) {
        function file_get_contents($filename)
        {
            $fd = fopen($filename, "rb");
            $content = fread($fd, filesize($filename));
            fclose($fd);
            return $content;
        }
    }
    //  pre PHP 4.3.x workaround
    if (!defined('__CLASS__')) {
        define('__CLASS__', null);
    }

    //  pre PHP 4.3.x workaround
    if (!defined('__FUNCTION__')) {
        define('__FUNCTION__', null);
    }
?>