03 2020 档案

摘要:1.下载扩展源码 https://pecl.php.net/package/redis 2.解压进入扩展目录 3./Applications/MAMP/bin/php/php7.3.1/bin/phpize (中间php版本根据自身环境来填写) [ M1 安装编译 指定x86_64架构 gcc编译器 阅读全文
posted @ 2020-03-30 01:14 时间掉飞机 阅读(572) 评论(0) 推荐(0)
摘要:<?php $dir = '/Applications/MAMP/htdocs'; function getDir($dir){ if(!is_dir($dir)) return '请提供正确的路径!'; $arr = []; $res = opendir($dir); while($list = 阅读全文
posted @ 2020-03-23 01:05 时间掉飞机 阅读(191) 评论(0) 推荐(0)
摘要://下面代码是在Thinkphp6写的,短信目前还能发送,根据自己情况改就行(发送短信需要用到后面的两个类文件) //注:这个只能用来测试用 <?php declare(strict_types=1); namespace app\common\lib\sms; use app\common\lib 阅读全文
posted @ 2020-03-23 00:27 时间掉飞机 阅读(870) 评论(0) 推荐(0)
摘要:<?php //抓取页面图片的时候防止图片403(防止盗链) echo "<meta name='referrer' content='no-referrer'>"; $list = file_get_contents($url); $k = preg_match_all('/<img [^>]* 阅读全文
posted @ 2020-03-22 23:43 时间掉飞机 阅读(166) 评论(0) 推荐(0)