XML

    <function name="rpcf_user5_change_int_status" id="-0x4007">
      <input>
            <integer name="int_status_recv" />
      </input>
      <output>
      </output>
    </function>

PHP

	function rpcf_user5_change_int_status($status) { //-0x4007
		$ret=array();
		if (!$this->connection->urfa_call(-0x4007)) {
			print "Error calling function ". __FUNCTION__ ."\n";
			return FALSE;
		}
		$packet = $this->connection->getPacket();
		$packet->DataSetInt($status);
		$this->connection->urfa_send_param($packet);
		$this->connection->urfa_get_data();
	}