摘要: 一、拼建行支付URL获取支付参数 这一步本来是最简单的,但是里面有个mac参数,需要md5加密处理,但又未说明对哪些参数加密,造成多次测试失败 正确的url应该是: $host = 'https://ibsbjstar.ccb.com.cn/CCBIS/ccbMain?CCB_IBSVersion= 阅读全文
posted @ 2021-07-30 16:45 dreamboycx 阅读(829) 评论(0) 推荐(0) 编辑
摘要: Nginx是一款轻量级的高性能web服务器,同时也是一款非常优秀的负载均衡器和反向代理服务器。由于支持强大的正则匹配规则、动静分离、URLrewrite功能及安装配置简单且对网络稳定性依赖非常小等优点,所以常用来做为七层负载均衡使用。在硬件不差的情况下,通常可以稳定支持几万的并发连接,在硬件性能足够 阅读全文
posted @ 2021-06-08 19:29 dreamboycx 阅读(119) 评论(0) 推荐(0) 编辑
摘要: jQuery.parent(expr) //找父元素 jQuery.parents(expr) //找到所有祖先元素,不限于父元素 jQuery.children(expr) //查找所有子元素,只会找到直接的孩子节点,不会返回所有子孙 jQuery.contents() //查找下面的所有内容,包 阅读全文
posted @ 2021-05-26 11:20 dreamboycx 阅读(2801) 评论(0) 推荐(0) 编辑
摘要: Route::any("/{module}/{controller}/{action}",function ($module,$class,$action){ $class = "App\\Http\\Controllers\\$module\\".ucfirst(strtolower($class 阅读全文
posted @ 2021-05-19 11:59 dreamboycx 阅读(157) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.or 阅读全文
posted @ 2021-05-12 15:58 dreamboycx 阅读(271) 评论(0) 推荐(0) 编辑
摘要: // 引用phpexcel类 $this->load->library('PHPExcel'); // 创建对象 $objPHPExcel = new PHPExcel(); // 显示错误信息 error_reporting(E_ALL); // Set properties $objPHPExc 阅读全文
posted @ 2020-11-14 10:02 dreamboycx 阅读(100) 评论(0) 推荐(0) 编辑
摘要: animatext.js文档 animatext是一款简单的jquery文字动画特效插件。通过该jquery文字动画插件,你可以在显示一串文字时,添加多种炫酷的动画效果。 使用方法在页面中引入jquery和animatext.min.js文件,如果需要额外的动画效果,可以添加animate.min. 阅读全文
posted @ 2020-09-16 10:56 dreamboycx 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 启动一个服务:systemctl start firewalld.service 关闭一个服务:systemctl stop firewalld.service 重启一个服务:systemctl restart firewalld.service 显示一个服务的状态:systemctl status 阅读全文
posted @ 2020-09-08 11:10 dreamboycx 阅读(470) 评论(0) 推荐(0) 编辑
摘要: function getAccessToken() { $appid = 'wx53cxxxxxx'; $secret = 'f46xxxxxxxxxxxddda2'; $accessTokenFile = './accessToken.txt'; if (file_exists($accessTo 阅读全文
posted @ 2020-08-28 10:58 dreamboycx 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1、使文字不换行 white-space: nowrap; 值描述 normal 默认。空白会被浏览器忽略。 pre 空白会被浏览器保留。其行为方式类似 HTML 中的 <pre> 标签。 nowrap 文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止。 pre-wrap 保留空白 阅读全文
posted @ 2020-06-13 15:22 dreamboycx 阅读(725) 评论(0) 推荐(0) 编辑