进制互相转换
摘要:$mtime = base_convert(1*60, 10, 16); //把10进制转化为16进制 $mtime = str_pad($mtime, 8, "0", STR_PAD_LEFT); //填充字符到固定长度,例如字符串长度不够就填充0,直至够8个字符长度
阅读全文
MYSQL 批量插入一万条数据
摘要:$sql = sprintf("INSERT INTO iot_client_number2 (owid,server,jh,ebiao,xq) VALUES "); foreach($save as $item) { $itemStr = '( '; $itemStr .= sprintf("%d
阅读全文
curl 异步请求
摘要:public function test() { $body = file_get_contents('php://input'); $header = array( 'application/json; charset=utf-8' ); $url = 'https://www.aiotagro.
阅读全文