uawdijnntqw1x1x1
IP : 216.73.216.6
Hostname : ps-hcp-gr-004.pouyasazan.org
Kernel : Linux ps-hcp-gr-004.pouyasazan.org 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
Disable Function : exec,system,passthru,shell_exec,proc_open,proc_close,popen,pcntl_exec,dl,show_source
OS : Linux
PATH:
/
home
/
hsabaeej
/
public_html
/
ca4f2
/
..
/
libraries
/
fof30
/
Utils
/
Phpfunc.php
/
/
<?php /** * @package FOF * @copyright Copyright (c)2010-2018 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 2 or later * * Based on the Seesion package of Aura for PHP – https://github.com/auraphp/Aura.Session */ namespace FOF30\Utils; defined('_JEXEC') or die; /** * Intercept calls to PHP functions. * * @method function_exists(StringHelper $function) * @method mcrypt_list_algorithms() * @method hash_algos() */ class Phpfunc { /** * * Magic call to intercept any function pass to it. * * @param string $func The function to call. * * @param array $args Arguments passed to the function. * * @return mixed The result of the function call. * */ public function __call($func, $args) { return call_user_func_array($func, $args); } }
/home/hsabaeej/public_html/ca4f2/../libraries/fof30/Utils/Phpfunc.php