CI_Xmlrpc::send_response PHP 메소드

send_response() 공개 메소드

Send Response for Server Request
public send_response ( array $response ) : object
$response array
리턴 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));
    }