您好,所以我正在尝试使用Freenom API为名为iForce的服务轻松注册域名,我来到这个cURL命令,但我不知道如何让PHP运行它。
以下是命令
curl -X GET "https://api.freenom.com/v2/domain/search.xml\
?domainname=test001.tk\
&email=john@smith.net\
&password=68bb651cb1\
&domaintype=PAID"
如果有人可以请将其转换为php或告诉我如何或告诉我如何在PHP中使用它将是惊人的!
非常感谢你!
答案 0 :(得分:-1)
类似的东西:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://api.freenom.com/v2/domain/search.xml?domainname=test001.tk&email=john@smith.net&password=68bb651cb1&domaintype=PAID");
curl_setopt($ch, CURLOPT_HTTPGET, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Try it on true first, if that fails, set it back to false.
$server_output = curl_exec($ch);
curl_close ($ch);
?>
现在,您可以根据需要使用$server_output
。