
php
名月摘下
这个作者很懒,什么都没留下…
展开
-
php 抓取 百度、微博、搜狗热门关键词
/** * 获取 百度 关键词 */ public function index(){ $data = $this->getBaiduHotKeyWord(); // 查询 数据库 $where['how_type'] = 4; $saveData = []; for ($i = 0;$i<10;$i++){ $saveData[$i] = [ .原创 2021-07-10 00:34:37 · 330 阅读 · 2 评论 -
php 格式化 字符串
private function setStringSubstr($str,$len){ $sublen = $len; $string = strip_tags($str); $string = preg_replace ('/\n/is', '', $string); $string = preg_replace ('/ | /is', '', $string); $string = preg_replace ('/ /is', '', $s.原创 2021-07-08 16:03:10 · 1142 阅读 · 2 评论 -
phpexcel 导入文件
public function getSheetData($inputFileName) { vendor("PhpExcel.PHPExcel"); $objPHPExcel = new \PHPExcel(); //$inputFileName "D:/360/test1.xlsx" $objPHPExcel = \PHPExcel_IOFactory::load($inputFileName); $sheetDa.原创 2021-01-29 14:41:00 · 122 阅读 · 0 评论 -
微信支付流程介绍
首先新建控制器Pay继承基础控制器 { // 前置方法 protected $beforeActionList = [ 'checkExclusiveScope'=>['only'=>'getPreOrder'] ]; // 新建方法getPreOrder($id='') ...原创 2019-08-16 15:32:21 · 260 阅读 · 0 评论