==== XML ==== ==== PHP ==== function rpcf_get_sys_users_list() { //0x4405 $ret=array(); if (!$this->connection->urfa_call(0x4405)) { print "Error calling function ". __FUNCTION__ ."\n"; return FALSE; } if ($x = $this->connection->urfa_get_data()) { $count=$x->DataGetInt(); $ret['count']=$count; for($i=0;$i<$count;$i++) { // $x = $this->connection->urfa_get_data(); $user['user_id']=$x->DataGetInt(); $user['login']=$x->DataGetString(); $user['ip_address']=$x->DataGetIPAddress(); $user['mask']=$x->DataGetIPAddress(); $ret['users'][]=$user; } // $this->connection->urfa_get_data(); } return $ret; }