08 2020 档案

摘要:1.word转pdf 需要用到 LibreOffice 便携版 如果是linux可以去官网查看安装命令 下载地址:https://zh-cn.libreoffice.org/download/portable-versions/ $retval = 1; // exec() might be dis 阅读全文
posted @ 2020-08-27 08:57 时间掉飞机 阅读(482) 评论(0) 推荐(0)
摘要:<?php /** * PushMessage * 微信公众号发送文本信息 */ class PushMessage{ private $appID = ""; // 服务号appID private $appSecret = ""; // 服务号appSerect // 获取access_toke 阅读全文
posted @ 2020-08-26 08:50 时间掉飞机 阅读(315) 评论(0) 推荐(0)
摘要:注:前往百度地图api开放平台登录 在控制台创建一个应用 拿到访问应用的AK 代码: function getClientIP() { $realip = ''; $unknown = 'unknown'; if (isset($_SERVER)){ if(isset($_SERVER['HTTP_ 阅读全文
posted @ 2020-08-22 15:48 时间掉飞机 阅读(242) 评论(0) 推荐(0)
摘要:function getJson($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURL 阅读全文
posted @ 2020-08-19 08:44 时间掉飞机 阅读(137) 评论(0) 推荐(0)
摘要:注:开发文档地址:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html 准备工作: 1.先登录微信公众平台进入“公众号设置”的“功能设置”里填写“JS接口安全域名”。 2.需要用到wx模块 引入 <scrip 阅读全文
posted @ 2020-08-13 18:26 时间掉飞机 阅读(1273) 评论(0) 推荐(0)