Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Composer\Autoload;/** * ClassLoader implements a PSR-0, PSR-4 and classma..
Decoded Output download
<?php namespace Composer\Autoload;/**
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
*
* $loader = new \Composer\Autoload\ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
*
* // to enable searching the include path (eg. for PEAR packages)
* $loader->setUseIncludePath(true);
*
* In this example, if you try to use a class in the Symfony\Component
* namespace or one of its children (Symfony\Component\Console for instance),
* the autoloader will first look for the class under the component/
* directory, and it will then fallback to the framework/ directory if not
* found before giving up.
*
* This class is loosely based on the Symfony UniversalClassLoader.
*
* @author Fabien Potencier <[email protected]>
* @author Jordi Boggiano <[email protected]>
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/ class drdo18{/** @var ?string */ private $mikf19;/**
* @var array[]
* @psalm-var array<string, array<string, int>>
*/ private $tibd1a=array();/**
* @var array[]
* @psalm-var array<string, array<int, string>>
*/ private $ejre1b=array();/**
* @var array[]
* @psalm-var array<string, string>
*/ private $hpsr1c=array();/**
* @var array[]
* @psalm-var array<string, array<string, string[]>>
*/ private $uvsc1d=array();/**
* @var array[]
* @psalm-var array<string, string>
*/ private $scxz1e=array();/** @var bool */ private $jwma1f=false;/**
* @var string[]
* @psalm-var array<string, string>
*/ private $smya20=array();/** @var bool */ private $zvqj21=false;/**
* @var bool[]
* @psalm-var array<string, bool>
*/ private $iueb22=array();/** @var ?string */ private $xxpo23;/**
* @var self[]
*/ private static $emfq24=array();/**
* @param ?string $vendorDir
*/ public function sihi0($mikf19=null){$this->$azau25=$mikf19;}/**
* @return string[]
*/ public function lysf1(){if(!empty($this->$fhug26)){return call_user_func_array(base64_decode('YXJyYXlfbWVyZ2U='),array_values($this->$fhug26));}returnarray();}/**
* @return array[]
* @psalm-return array<string, array<int, string>>
*/ public function wlis2(){return $this->$raak27;}/**
* @return array[]
* @psalm-return array<string, string>
*/ public function tqhk3(){return $this->$zsnn28;}/**
* @return array[]
* @psalm-return array<string, string>
*/ public function ncbk4(){return $this->$wwba29;}/**
* @return string[] Array of classname => path
* @psalm-return array<string, string>
*/ public function bpxj5(){return $this->$tkhl2a;}/**
* @param string[] $classMap Class to filename map
* @psalm-param array<string, string> $classMap
*
* @return void
*/ public function qwqd6(array$smya20){if($this->$tkhl2a){$this->$tkhl2a=array_merge($this->$tkhl2a,$smya20);}else{$this->$tkhl2a=$smya20;}}/**
* Registers a set of PSR-0 directories for a given prefix, either
* appending or prepending to the ones previously set for this prefix.
*
* @param string $prefix The prefix
* @param string[]|string $paths The PSR-0 root directories
* @param bool $prepend Whether to prepend the directories
*
* @return void
*/ public function xxlx7($bqtf2b,$iiti2c,$svid2d=false){if(!$bqtf2b){if($svid2d){$this->$zsnn28=array_merge((array)$iiti2c,$this->$zsnn28);}else{$this->$zsnn28=array_merge($this->$zsnn28,(array)$iiti2c);}return;}$onon2e=$bqtf2b[0];if(!isset($this->$fhug26[$onon2e][$bqtf2b])){$this->$fhug26[$onon2e][$bqtf2b]=(array)$iiti2c;return;}if($svid2d){$this->$fhug26[$onon2e][$bqtf2b]=array_merge((array)$iiti2c,$this->$fhug26[$onon2e][$bqtf2b]);}else{$this->$fhug26[$onon2e][$bqtf2b]=array_merge($this->$fhug26[$onon2e][$bqtf2b],(array)$iiti2c);}}/**
* Registers a set of PSR-4 directories for a given namespace, either
* appending or prepending to the ones previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\'
* @param string[]|string $paths The PSR-4 base directories
* @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
*
* @return void
*/ public function gloj8($bqtf2b,$iiti2c,$svid2d=false){if(!$bqtf2b){if($svid2d){$this->$wwba29=array_merge((array)$iiti2c,$this->$wwba29);}else{$this->$wwba29=array_merge($this->$wwba29,(array)$iiti2c);}}elseif(!isset($this->$raak27[$bqtf2b])){$sszr2f=strlen($bqtf2b);if(base64_decode('XFw=')!==$bqtf2b[$sszr2f-1]){throw new \csnb30(base64_decode('QSBub24tZW1wdHkgUFNSLTQgcHJlZml4IG11c3QgZW5kIHdpdGggYSBuYW1lc3BhY2Ugc2VwYXJhdG9yLg=='));}$this->$imjf31[$bqtf2b[0]][$bqtf2b]=$sszr2f;$this->$raak27[$bqtf2b]=(array)$iiti2c;}elseif($svid2d){$this->$raak27[$bqtf2b]=array_merge((array)$iiti2c,$this->$raak27[$bqtf2b]);}else{$this->$raak27[$bqtf2b]=array_merge($this->$raak27[$bqtf2b],(array)$iiti2c);}}/**
* Registers a set of PSR-0 directories for a given prefix,
* replacing any others previously set for this prefix.
*
* @param string $prefix The prefix
* @param string[]|string $paths The PSR-0 base directories
*
* @return void
*/ public function iluv9($bqtf2b,$iiti2c){if(!$bqtf2b){$this->$zsnn28=(array)$iiti2c;}else{$this->$fhug26[$bqtf2b[0]][$bqtf2b]=(array)$iiti2c;}}/**
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\'
* @param string[]|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
*
* @return void
*/ public function algoa($bqtf2b,$iiti2c){if(!$bqtf2b){$this->$wwba29=(array)$iiti2c;}else{$sszr2f=strlen($bqtf2b);if(base64_decode('XFw=')!==$bqtf2b[$sszr2f-1]){throw new \csnb30(base64_decode('QSBub24tZW1wdHkgUFNSLTQgcHJlZml4IG11c3QgZW5kIHdpdGggYSBuYW1lc3BhY2Ugc2VwYXJhdG9yLg=='));}$this->$imjf31[$bqtf2b[0]][$bqtf2b]=$sszr2f;$this->$raak27[$bqtf2b]=(array)$iiti2c;}}/**
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
*
* @return void
*/ public function lhnhb($jwma1f){$this->$ofns32=$jwma1f;}/**
* Can be used to check if the autoloader uses the include path to check
* for classes.
*
* @return bool
*/ public function xebfc(){return $this->$ofns32;}/**
* Turns off searching the prefix and fallback directories for classes
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
*
* @return void
*/ public function lasmd($zvqj21){$this->$lobl33=$zvqj21;}/**
* Should class lookup fail if not found in the current class map?
*
* @return bool
*/ public function nkrve(){return $this->$lobl33;}/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*
* @return void
*/ public function ecbdf($xxpo23){$this->$zzkg34=function_exists(base64_decode('YXBjdV9mZXRjaA=='))&&filter_var(ini_get(base64_decode('YXBjLmVuYWJsZWQ=')),FILTER_VALIDATE_BOOLEAN)?$xxpo23:null;}/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/ public function ljsl10(){return $this->$zzkg34;}/**
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
*
* @return void
*/ public function hdwh11($svid2d=false){spl_autoload_register(array($this,base64_decode('bG9hZENsYXNz')),true,$svid2d);if(null===$this->$azau25){return;}if($svid2d){self::$emfq24=array($this->$azau25=>$this)+self::$emfq24;}else{unset(self::$emfq24[$this->$azau25]);self::$emfq24[$this->$azau25]=$this;}}/**
* Unregisters this instance as an autoloader.
*
* @return void
*/ public function rsvd12(){spl_autoload_unregister(array($this,base64_decode('bG9hZENsYXNz')));if(null!==$this->$azau25){unset(self::$emfq24[$this->$azau25]);}}/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return true|null True if loaded, null otherwise
*/ public function uotr13($waly35){if($gsgl36=$this->unjb14($waly35)){ndgd17($gsgl36);return true;}return null;}/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/ public function unjb14($waly35){if(isset($this->$tkhl2a[$waly35])){return $this->$tkhl2a[$waly35];}if($this->$lobl33||isset($this->$xrlc37[$waly35])){return false;}if(null!==$this->$zzkg34){$gsgl36=qrko38($this->$zzkg34.$waly35,$orym39);if($orym39){return $gsgl36;}}$gsgl36=$this->oypj16($waly35,base64_decode('LnBocA=='));if(false===$gsgl36&&defined(base64_decode('SEhWTV9WRVJTSU9O'))){$gsgl36=$this->oypj16($waly35,base64_decode('Lmho'));}if(null!==$this->$zzkg34){xrhh3a($this->$zzkg34.$waly35,$gsgl36);}if(false===$gsgl36){$this->$xrlc37[$waly35]=true;}return $gsgl36;}/**
* Returns the currently registered loaders indexed by their corresponding vendor directories.
*
* @return self[]
*/ public static function iurl15(){return self::$emfq24;}/**
* @param string $class
* @param string $ext
* @return string|false
*/ private function oypj16($waly35,$gyaj3b){$qbht3c=strtr($waly35,base64_decode('XFw='),DIRECTORY_SEPARATOR).$gyaj3b;$onon2e=$waly35[0];if(isset($this->$imjf31[$onon2e])){$oxap3d=$waly35;while(false!==$udla3e=strrpos($oxap3d,base64_decode('XFw='))){$oxap3d=substr($oxap3d,0,$udla3e);$fxmn3f=$oxap3d.base64_decode('XFw=');if(isset($this->$raak27[$fxmn3f])){$mkpg40=DIRECTORY_SEPARATOR.substr($qbht3c,$udla3e+1);foreach($this->$raak27[$fxmn3f]as $vllm41){if(file_exists($gsgl36=$vllm41.$mkpg40)){return $gsgl36;}}}}}foreach($this->$wwba29 as $vllm41){if(file_exists($gsgl36=$vllm41.DIRECTORY_SEPARATOR.$qbht3c)){return $gsgl36;}}if(false!==$hklk42=strrpos($waly35,base64_decode('XFw='))){$oyus43=substr($qbht3c,0,$hklk42+1).strtr(substr($qbht3c,$hklk42+1),base64_decode('Xw=='),DIRECTORY_SEPARATOR);}else{$oyus43=strtr($waly35,base64_decode('Xw=='),DIRECTORY_SEPARATOR).$gyaj3b;}if(isset($this->$fhug26[$onon2e])){foreach($this->$fhug26[$onon2e]as $bqtf2b=>$gote44){if(0===strpos($waly35,$bqtf2b)){foreach($gote44 as $vllm41){if(file_exists($gsgl36=$vllm41.DIRECTORY_SEPARATOR.$oyus43)){return $gsgl36;}}}}}foreach($this->$zsnn28 as $vllm41){if(file_exists($gsgl36=$vllm41.DIRECTORY_SEPARATOR.$oyus43)){return $gsgl36;}}if($this->$ofns32&&$gsgl36=stream_resolve_include_path($oyus43)){return $gsgl36;}return false;}}/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*
* @param string $file
* @return void
* @private
*/ function ndgd17($gsgl36){include $gsgl36;}?>
Did this file decode correctly?
Original Code
<?php namespace Composer\Autoload;/**
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
*
* $loader = new \Composer\Autoload\ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
*
* // to enable searching the include path (eg. for PEAR packages)
* $loader->setUseIncludePath(true);
*
* In this example, if you try to use a class in the Symfony\Component
* namespace or one of its children (Symfony\Component\Console for instance),
* the autoloader will first look for the class under the component/
* directory, and it will then fallback to the framework/ directory if not
* found before giving up.
*
* This class is loosely based on the Symfony UniversalClassLoader.
*
* @author Fabien Potencier <[email protected]>
* @author Jordi Boggiano <[email protected]>
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/ class drdo18{/** @var ?string */ private $mikf19;/**
* @var array[]
* @psalm-var array<string, array<string, int>>
*/ private $tibd1a=array();/**
* @var array[]
* @psalm-var array<string, array<int, string>>
*/ private $ejre1b=array();/**
* @var array[]
* @psalm-var array<string, string>
*/ private $hpsr1c=array();/**
* @var array[]
* @psalm-var array<string, array<string, string[]>>
*/ private $uvsc1d=array();/**
* @var array[]
* @psalm-var array<string, string>
*/ private $scxz1e=array();/** @var bool */ private $jwma1f=false;/**
* @var string[]
* @psalm-var array<string, string>
*/ private $smya20=array();/** @var bool */ private $zvqj21=false;/**
* @var bool[]
* @psalm-var array<string, bool>
*/ private $iueb22=array();/** @var ?string */ private $xxpo23;/**
* @var self[]
*/ private static $emfq24=array();/**
* @param ?string $vendorDir
*/ public function sihi0($mikf19=null){$this->$azau25=$mikf19;}/**
* @return string[]
*/ public function lysf1(){if(!empty($this->$fhug26)){return call_user_func_array(base64_decode('YXJyYXlfbWVyZ2U='),array_values($this->$fhug26));}returnarray();}/**
* @return array[]
* @psalm-return array<string, array<int, string>>
*/ public function wlis2(){return $this->$raak27;}/**
* @return array[]
* @psalm-return array<string, string>
*/ public function tqhk3(){return $this->$zsnn28;}/**
* @return array[]
* @psalm-return array<string, string>
*/ public function ncbk4(){return $this->$wwba29;}/**
* @return string[] Array of classname => path
* @psalm-return array<string, string>
*/ public function bpxj5(){return $this->$tkhl2a;}/**
* @param string[] $classMap Class to filename map
* @psalm-param array<string, string> $classMap
*
* @return void
*/ public function qwqd6(array$smya20){if($this->$tkhl2a){$this->$tkhl2a=array_merge($this->$tkhl2a,$smya20);}else{$this->$tkhl2a=$smya20;}}/**
* Registers a set of PSR-0 directories for a given prefix, either
* appending or prepending to the ones previously set for this prefix.
*
* @param string $prefix The prefix
* @param string[]|string $paths The PSR-0 root directories
* @param bool $prepend Whether to prepend the directories
*
* @return void
*/ public function xxlx7($bqtf2b,$iiti2c,$svid2d=false){if(!$bqtf2b){if($svid2d){$this->$zsnn28=array_merge((array)$iiti2c,$this->$zsnn28);}else{$this->$zsnn28=array_merge($this->$zsnn28,(array)$iiti2c);}return;}$onon2e=$bqtf2b[0];if(!isset($this->$fhug26[$onon2e][$bqtf2b])){$this->$fhug26[$onon2e][$bqtf2b]=(array)$iiti2c;return;}if($svid2d){$this->$fhug26[$onon2e][$bqtf2b]=array_merge((array)$iiti2c,$this->$fhug26[$onon2e][$bqtf2b]);}else{$this->$fhug26[$onon2e][$bqtf2b]=array_merge($this->$fhug26[$onon2e][$bqtf2b],(array)$iiti2c);}}/**
* Registers a set of PSR-4 directories for a given namespace, either
* appending or prepending to the ones previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param string[]|string $paths The PSR-4 base directories
* @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
*
* @return void
*/ public function gloj8($bqtf2b,$iiti2c,$svid2d=false){if(!$bqtf2b){if($svid2d){$this->$wwba29=array_merge((array)$iiti2c,$this->$wwba29);}else{$this->$wwba29=array_merge($this->$wwba29,(array)$iiti2c);}}elseif(!isset($this->$raak27[$bqtf2b])){$sszr2f=strlen($bqtf2b);if(base64_decode('XFw=')!==$bqtf2b[$sszr2f-1]){throw new \csnb30(base64_decode('QSBub24tZW1wdHkgUFNSLTQgcHJlZml4IG11c3QgZW5kIHdpdGggYSBuYW1lc3BhY2Ugc2VwYXJhdG9yLg=='));}$this->$imjf31[$bqtf2b[0]][$bqtf2b]=$sszr2f;$this->$raak27[$bqtf2b]=(array)$iiti2c;}elseif($svid2d){$this->$raak27[$bqtf2b]=array_merge((array)$iiti2c,$this->$raak27[$bqtf2b]);}else{$this->$raak27[$bqtf2b]=array_merge($this->$raak27[$bqtf2b],(array)$iiti2c);}}/**
* Registers a set of PSR-0 directories for a given prefix,
* replacing any others previously set for this prefix.
*
* @param string $prefix The prefix
* @param string[]|string $paths The PSR-0 base directories
*
* @return void
*/ public function iluv9($bqtf2b,$iiti2c){if(!$bqtf2b){$this->$zsnn28=(array)$iiti2c;}else{$this->$fhug26[$bqtf2b[0]][$bqtf2b]=(array)$iiti2c;}}/**
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param string[]|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
*
* @return void
*/ public function algoa($bqtf2b,$iiti2c){if(!$bqtf2b){$this->$wwba29=(array)$iiti2c;}else{$sszr2f=strlen($bqtf2b);if(base64_decode('XFw=')!==$bqtf2b[$sszr2f-1]){throw new \csnb30(base64_decode('QSBub24tZW1wdHkgUFNSLTQgcHJlZml4IG11c3QgZW5kIHdpdGggYSBuYW1lc3BhY2Ugc2VwYXJhdG9yLg=='));}$this->$imjf31[$bqtf2b[0]][$bqtf2b]=$sszr2f;$this->$raak27[$bqtf2b]=(array)$iiti2c;}}/**
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
*
* @return void
*/ public function lhnhb($jwma1f){$this->$ofns32=$jwma1f;}/**
* Can be used to check if the autoloader uses the include path to check
* for classes.
*
* @return bool
*/ public function xebfc(){return $this->$ofns32;}/**
* Turns off searching the prefix and fallback directories for classes
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
*
* @return void
*/ public function lasmd($zvqj21){$this->$lobl33=$zvqj21;}/**
* Should class lookup fail if not found in the current class map?
*
* @return bool
*/ public function nkrve(){return $this->$lobl33;}/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*
* @return void
*/ public function ecbdf($xxpo23){$this->$zzkg34=function_exists(base64_decode('YXBjdV9mZXRjaA=='))&&filter_var(ini_get(base64_decode('YXBjLmVuYWJsZWQ=')),FILTER_VALIDATE_BOOLEAN)?$xxpo23:null;}/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/ public function ljsl10(){return $this->$zzkg34;}/**
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
*
* @return void
*/ public function hdwh11($svid2d=false){spl_autoload_register(array($this,base64_decode('bG9hZENsYXNz')),true,$svid2d);if(null===$this->$azau25){return;}if($svid2d){self::$emfq24=array($this->$azau25=>$this)+self::$emfq24;}else{unset(self::$emfq24[$this->$azau25]);self::$emfq24[$this->$azau25]=$this;}}/**
* Unregisters this instance as an autoloader.
*
* @return void
*/ public function rsvd12(){spl_autoload_unregister(array($this,base64_decode('bG9hZENsYXNz')));if(null!==$this->$azau25){unset(self::$emfq24[$this->$azau25]);}}/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return true|null True if loaded, null otherwise
*/ public function uotr13($waly35){if($gsgl36=$this->unjb14($waly35)){ndgd17($gsgl36);return true;}return null;}/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/ public function unjb14($waly35){if(isset($this->$tkhl2a[$waly35])){return $this->$tkhl2a[$waly35];}if($this->$lobl33||isset($this->$xrlc37[$waly35])){return false;}if(null!==$this->$zzkg34){$gsgl36=qrko38($this->$zzkg34.$waly35,$orym39);if($orym39){return $gsgl36;}}$gsgl36=$this->oypj16($waly35,base64_decode('LnBocA=='));if(false===$gsgl36&&defined(base64_decode('SEhWTV9WRVJTSU9O'))){$gsgl36=$this->oypj16($waly35,base64_decode('Lmho'));}if(null!==$this->$zzkg34){xrhh3a($this->$zzkg34.$waly35,$gsgl36);}if(false===$gsgl36){$this->$xrlc37[$waly35]=true;}return $gsgl36;}/**
* Returns the currently registered loaders indexed by their corresponding vendor directories.
*
* @return self[]
*/ public static function iurl15(){return self::$emfq24;}/**
* @param string $class
* @param string $ext
* @return string|false
*/ private function oypj16($waly35,$gyaj3b){$qbht3c=strtr($waly35,base64_decode('XFw='),DIRECTORY_SEPARATOR).$gyaj3b;$onon2e=$waly35[0];if(isset($this->$imjf31[$onon2e])){$oxap3d=$waly35;while(false!==$udla3e=strrpos($oxap3d,base64_decode('XFw='))){$oxap3d=substr($oxap3d,0,$udla3e);$fxmn3f=$oxap3d.base64_decode('XFw=');if(isset($this->$raak27[$fxmn3f])){$mkpg40=DIRECTORY_SEPARATOR.substr($qbht3c,$udla3e+1);foreach($this->$raak27[$fxmn3f]as $vllm41){if(file_exists($gsgl36=$vllm41.$mkpg40)){return $gsgl36;}}}}}foreach($this->$wwba29 as $vllm41){if(file_exists($gsgl36=$vllm41.DIRECTORY_SEPARATOR.$qbht3c)){return $gsgl36;}}if(false!==$hklk42=strrpos($waly35,base64_decode('XFw='))){$oyus43=substr($qbht3c,0,$hklk42+1).strtr(substr($qbht3c,$hklk42+1),base64_decode('Xw=='),DIRECTORY_SEPARATOR);}else{$oyus43=strtr($waly35,base64_decode('Xw=='),DIRECTORY_SEPARATOR).$gyaj3b;}if(isset($this->$fhug26[$onon2e])){foreach($this->$fhug26[$onon2e]as $bqtf2b=>$gote44){if(0===strpos($waly35,$bqtf2b)){foreach($gote44 as $vllm41){if(file_exists($gsgl36=$vllm41.DIRECTORY_SEPARATOR.$oyus43)){return $gsgl36;}}}}}foreach($this->$zsnn28 as $vllm41){if(file_exists($gsgl36=$vllm41.DIRECTORY_SEPARATOR.$oyus43)){return $gsgl36;}}if($this->$ofns32&&$gsgl36=stream_resolve_include_path($oyus43)){return $gsgl36;}return false;}}/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*
* @param string $file
* @return void
* @private
*/ function ndgd17($gsgl36){include $gsgl36;}?>
Function Calls
None |
Stats
MD5 | f16b7a53f123fccc4e75a2fcf24930a8 |
Eval Count | 0 |
Decode Time | 103 ms |