xmlrpcresp::xmlrpcresp PHP Method

xmlrpcresp() public method

public xmlrpcresp ( $val, $fcode, $fstr = "" )
    function xmlrpcresp($val, $fcode = 0, $fstr = "")
    {
        if ($fcode != 0) {
            $this->xv = 0;
            $this->fn = $fcode;
            $this->fs = htmlspecialchars($fstr);
        } else {
            $this->xv = $val;
            $this->fn = 0;
        }
    }