XML

<function name="rpcf_del_router" id="0x5007">
   <input>
     <integer name="router_id" />
   </input>
   <output/>
</function>

PHP

function rpcs_del_router($router_id) { //0x5007
 
	if (!$this->connection->urfa_call(0x5007)) {
	print "Error calling function ". __FUNCTION__ ."\n";
		return FALSE;
	}
	$packet = $this->connection->getPacket();
	$packet->DataSetInt($router_id);
	$this->connection->urfa_send_param($packet);
 
}