首页
4K壁纸
直播
统计分析
友情链接
搜索
1
#1031 – TABLE STORAGE ENGINE FOR ” DOESN’T HAVE THIS OPTION解决方法
1,261 阅读
2
让浏览器不显示 https 页面中 http 请求警报 http-equiv=”Content-Security-Policy” content=”upgrade-insecure-requests”
977 阅读
3
报错代码:ERROR 1227 (42000)-解决办法
758 阅读
4
微信个人商户号养号建议
602 阅读
5
解决移动端position:fixed随软键盘移动的问题
583 阅读
Php
Mysql
Linux
Reids
Java
Python
常用笔记
学习
乱七八糟
Search
标签搜索
php
Mysql
千卡云支付
Linux
redis
千卡云
千卡易支付
Nginx
function
JS
session
shell
JSON
跨域
支付宝
CentOS
Apache
支付
composer
Array
蓝科迪梦
累计撰写
107
篇文章
累计收到
0
条评论
首页
栏目
Php
Mysql
Linux
Reids
Java
Python
常用笔记
学习
乱七八糟
页面
4K壁纸
直播
统计分析
友情链接
搜索到
107
篇与
蓝科迪梦 发布的内容
2022-07-29
php判断继承类有没有对指定方法重写
use ReflectionClass; public function __construct() { $reflectClass = new ReflectionClass($this); //必须重写的方法 $requiredOverwriteMethods = [ 'isCurrentLimit', 'genCacheKey', 'really', ]; foreach ($requiredOverwriteMethods as $method) { if ($reflectClass->getMethod($method)->getDeclaringClass()->getName() !== $reflectClass->getName()) { throw new \Exception('继承:'.__CLASS__.'的子类必须重写方法:'.$method); } } unset($method); }
2022年07月29日
338 阅读
0 评论
0 点赞
2022-07-14
Nginx正则匹配重写地址和调试
Nginx正则匹配重写地址和调试 假设我们向通过 /js 访问 /gm_assets/gm/js 目录下得.js资源调试$1是否为理想值,设置成功后,访问查看:http://*/gm_assets/gm/js/chunk-97ea71fe.a1568fbb.js location ~/gm_assets/gm/js { rewrite ^/gm_assets/gm/js/(.*).*$ /js/$1; return 200 '{"status":$1}'; }
2022年07月14日
394 阅读
0 评论
0 点赞
1
...
7
8