CI_Xmlrpc::send_response PHP Méthode

send_response() public méthode

Send Response for Server Request
public send_response ( array $response ) : object
$response array
Résultat object
    public function send_response($response)
    {
        // $response should be array of values, which will be parsed
        // based on their data and type into a valid group of XML-RPC values
        return new XML_RPC_Response($this->values_parsing($response));
    }