博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ip地址查询
阅读量:5329 次
发布时间:2019-06-14

本文共 1455 字,大约阅读时间需要 4 分钟。

$ip)); $ch = curl_init(); $options = array( CURLOPT_URL => sprintf('%s?%s', self::$_requestURL, $query), CURLOPT_RETURNTRANSFER => true, CURLOPT_AUTOREFERER => false, CURLOPT_FOLLOWLOCATION => false, CURLOPT_HEADER => false, CURLOPT_TIMEOUT => 3.0, ); curl_setopt_array($ch, $options); $content = curl_exec($ch); curl_close($ch); return $content; } private static function parseJSON($json){ $O = json_decode ($json, true); if(false === is_null($O)){ return $O; } if (version_compare(PHP_VERSION, '5.3.0', '>=')) { $errorCode = json_last_error(); if(isset(self::$_JSONParseError[$errorCode])){ throw new Exception(self::$_JSONParseError[$errorCode], 5); } } throw new Exception('JSON parse error', 5); } private static $_JSONParseError = array( JSON_ERROR_NONE=>'No error has occurred', JSON_ERROR_DEPTH=>'The maximum stack depth has been exceeded', JSON_ERROR_CTRL_CHAR=>'Control character error, possibly incorrectly encoded', JSON_ERROR_STATE_MISMATCH=>'Invalid or malformed JSON', JSON_ERROR_SYNTAX=>'Syntax error', JSON_ERROR_UTF8=>'Malformed UTF-8 characters, possibly incorrectly encoded', );}

 

转载于:https://www.cnblogs.com/joshua317/articles/3696864.html

你可能感兴趣的文章
类各成员加载顺序
查看>>
Windows相关操作(备忘)
查看>>
Shell脚本-自动化部署WEB
查看>>
面向对象编程(十四)——面向对象三大特性之多态②
查看>>
CoreData 基本操作方法封装
查看>>
python 如何将ppt和word转化为txt文档
查看>>
10、函数进阶---命名空间
查看>>
Emmet 简介
查看>>
“希希敬敬对”团队作业——敏捷冲刺6
查看>>
Unlink of file 'xx' failed. Should I try again? (y/n) 解决办法
查看>>
C#抽象类和接口
查看>>
169. Majority Element 出现次数超过n/2的元素
查看>>
365. Water and Jug Problem量杯灌水问题
查看>>
1118 冲刺1
查看>>
Building Block
查看>>
Springmvc+Shiro实战
查看>>
微信小程序图片使用示例
查看>>
CSS div内放长英文字母或长数字自动换行 CSS一行排不下自动打断换行
查看>>
POJ 3895 Cycles of Lanes(DFS)
查看>>
Python+Selenium学习笔记17 - HTML测试报告
查看>>