class APICloud {
var $AppID = '自己的APPID';
var $AppKey = '自己的APPKEY';
var $AppPath = 'https://d.apicloud.com/mcm/api/';
var $timeOut = 30;
function APICloud()
{
$this->headerInfo = array(
'Content-Type:application/json',
'X-APICloud-AppId:'.$this->AppID,
'X-APICloud-AppKey:'.$this->getSHAKey()
);
}
function getSHAKey()
{
$time = $this->getMilliSecond();
return sha1($this->AppID.'UZ'.$this->AppKey.'UZ'.$time).'.'.$time;
}
//毫秒
function getMilliSecond()
{
list($s1, $s2) = explode(' ', microtime());
return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
}
function getAll($tableName)
{
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $this->AppPath.$tableName);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, $this->headerInfo);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $this->timeout);
$result = curl_exec($ch);
return $result;
}
帮我把这段PHP代码改成易语言的。
答案:2 悬赏:0 手机版
解决时间 2021-03-02 16:03
- 提问者网友:呐年旧曙光
- 2021-03-02 00:29
最佳答案
- 五星知识达人网友:长青诗
- 2021-03-02 01:33
自己去百度搜索一下php函数的含义, 慢慢改吧.
----
不要指望别人给你动手, 哪怕你给350元我也觉的划不来.
----
不要指望别人给你动手, 哪怕你给350元我也觉的划不来.
全部回答
- 1楼网友:北城痞子
- 2021-03-02 02:56
其实易语言比vb容易理解多了...
只要直译就行,你明白意思,不明白代码怎么写把..
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯