XML

    <function name="rpcf_core_build" id="0x0046">
      <input>
      </input>
      <output>
	    <string name="build" />
      </output>
    </function>

PHP

	function rpcf_core_build() { //0x0046
		$ret=array();
		if (!$this->connection->urfa_call(0x0046)) {
			print "Error calling function ". __FUNCTION__ ."\n";
			return FALSE;
		}
		$x = $this->connection->urfa_get_data();
		$ret['core_build']=$x->DataGetString();
//		$this->connection->urfa_get_data();
		return $ret;
	}