10 2021 档案
摘要:代码 public function export() { include_once ROOT. 'opensource/phpexcel/PHPExcel.php'; try { $objPHPExcel = new PHPExcel(); $titleList = [ '名称','年龄' ];
阅读全文
摘要:1、需求 比如,抓取博客网首页文章标题和作者 2、编码实现 <?php /** * 抓取网页 */ function catch_html($url) { $urlR = parse_url($url); $domain = $urlR['scheme'].'://'.$urlR['host'].'
阅读全文
摘要:原文: https://www.cnblogs.com/-mrl/p/13451632.html 1、安装 点击 file --> settting --> Plugins --> Browse Repositories 搜索 CamelCase 点击 Install 重启IDEA 2、使用 选中需
阅读全文
摘要:原文: https://her-cat.com/2018/07/10/accuracy-of-php71-json-encode.html 新项目用的 PHP 7.1.13 版本,在使用过程中发现 浮点类型 数据经过 json_encode 之后会出现精度问题。 举个例子: $data = [ 's
阅读全文