随笔分类 - php各种实例
PHP各种有用的小功能实例
摘要:// 客户端真实的IP地址 function get_real_ip() { $ip = false; // 客户端IP 或 NONE if (!empty($_SERVER["HTTP_CLIENT_IP"])) { $ip = $_SERVER["HTTP_CLIENT_IP"]; } // 多
阅读全文
摘要:/** * 秒数转时分格式 * @param $time int * @author jack * @throws string * @return string */ function Sec2Time($time) { if (is_numeric($time)) { return (bool)
阅读全文
摘要:curl与XPath curl的function函数代码在:https://www.cnblogs.com/zqblog1314/p/13322999.html <?php //推荐使用curl //引入curl的自定义函数 include __DIR__.'/function.php'; $url
阅读全文
摘要:curl发起网络请求 主体函数: <?php /** * 发起网络请求 * @param string $url * @param $data * @param array $header * @return bool|string */ function http_request(string $
阅读全文
摘要:首先先下载 PHPExcel 脚本之家下载地址:https://www.jb51.net/codes/194070.html 然后把文件丢到php脚本同级目录里面 在php文件里面写下以下代码即可 <?php //引入类库 include "./PHPExcel-1.8/Classes/PHPExc
阅读全文
摘要:微信公众号模板消息推送 下面介绍一下流程 1.首先先获取access_token 2.获取到了access_token,那么就去微信的模板库里挑选模板,并且把它添加到我的模板里面 3.接下来就是编辑数据,传递过去即可 4.当你发送了数据之后,微信会把推送成功的信息发送到你公众号基本配置里的服务器配置
阅读全文
摘要:php 给数组中的每个元素前面加上东西 $arr=[1,2,3,4];$newArr = array_map(function ($item){ return 'aaa'.$item; },$arr); $newArr就变成了【‘aaa1’,'aaa2','aaa3','aaa4'】
阅读全文
摘要:php在线预览pdf文件 1 <?php 2 if(!function_exists('read_pdf')) { 3 function read_pdf($file) { 4 if(strtolower(substr(strrchr($file,'.'),1)) != 'pdf') { 5 ech
阅读全文
posted @ 2020-04-27 20:48
养猪至富

浙公网安备 33010602011771号