Functions
ModifyDns() - NameServer Update
It is used to update the NS information of the domain name. public function ModifyDns($params=[],$dns=[]){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); if($dns) foreach($dns AS $i=>$dn) $dns[$i] = idn_to_ascii($dn,0,IN...
CNSList() - Child Nameserver List
It is used to retrieve the child nameserver information of the domain name, if not supported, an empty array should be returned. public function CNSList($params=[]){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); $get_list ...
addCNS() - Add Child Nameserver
It is used to add a child nameserver to the domain name, if not supported, an error message appears. public function addCNS($params=[],$ns='',$ip=''){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); $ns = idn_to_ascii...
ModifyCNS() - Child Nameserver Update
It is used to change the address of child nameserver of the domain name, if not supported, an error message appears. public function ModifyCNS($params=[],$old=[],$new_ns='',$new_ip=''){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS...
DeleteCNS() - Delete Child Nameserver
It is used to delete the child nameserver address of domain name, if not supported an error message appears. public function DeleteCNS($params=[],$ns='',$ip=''){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); $ns = i...