会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
学无止境—勇攀高峰
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2021年8月31日
bootstrap btn按钮颜色 class="btn btn-success"等列表
摘要: Bootstrap默认为很多组件都提供了5种颜色的样式, 这5种颜色分别是: btn-primary(重点蓝)、 btn-success(成功绿)、 btn-info(信息蓝)、 btn-warning(警告橙)、 btn-danger(危险红)。
阅读全文
posted @ 2021-08-31 10:20 路三千
阅读(2291)
评论(0)
推荐(1)
2021年8月28日
post提交大表单数据传递丢失字段
摘要: 大家都知道,get 与 post 的区别。 在文件上传的时候,大家都用 post。因为post的传递的数据量相对来说较大。 这其实可以在 php.ini 中修改。 默认值 post_max_size = 8M. 但是,我想说的是,我在传递的过程中,并没有达到8M,这个峰值,依旧有值丢失,被截取。 为
阅读全文
posted @ 2021-08-28 09:39 路三千
阅读(294)
评论(0)
推荐(0)
2021年8月25日
Cannot redeclare xxxxxx() (previously declared in C:\WWW\xxx.xxx:xxx)
摘要: 错误提示: Cannot redeclare xxxxxx() (previously declared in C:\WWW\geoip.inc:xxx) in <b>C:\WWW\geoip.inc</b> on line <b>xxx</b><br /> 错误原因: 这个问题是因为多次引用导致重
阅读全文
posted @ 2021-08-25 12:00 路三千
阅读(37)
评论(0)
推荐(0)
2021年6月8日
phpstorm删掉多余空行
摘要: Ctrl+r 替换快捷键 将 Regex 打钩 然后输入正则 ^\n replace all 注:记得勾选Regex; 后面查找带符号比如'$'的时候记得取消掉;
阅读全文
posted @ 2021-06-08 14:33 路三千
阅读(471)
评论(0)
推荐(0)
2021年6月4日
小程序中换行操作
摘要: <br/>在小程序上是用不了的; 小程序中可使用 <text>\r\n</text>
阅读全文
posted @ 2021-06-04 10:09 路三千
阅读(180)
评论(0)
推荐(0)
2021年6月3日
PHP LOOP循环 获取键名
摘要: {loop $piclist $k $p} {/loop} $k 即为键名
阅读全文
posted @ 2021-06-03 18:53 路三千
阅读(173)
评论(0)
推荐(0)
2021年6月2日
阿里云服务器云盘扩容报错 The filesystem is already nnnnnnn blocks long. Nothing to do!
摘要: 解决方法一: 当遇到这个报错应该是该云盘下有两个分区vdb1和vdb2;如果需要扩容vdb1的情况下,由于有vdb2部分内容的阻断,是没办法针对vdb1进行扩容的。可以先将vdb 2 数据进行拷贝,然后通过 fdisk /dev/vdb 执行p查看分区信息后,执行 d删除命令,后续选择2 (为p所查
阅读全文
posted @ 2021-06-02 15:12 路三千
阅读(7356)
评论(0)
推荐(0)
2021年5月26日
人人商城后台左侧菜单导航栏设置
摘要: 人人商城后台左侧导航栏修改文件目录: ewei_shopv2/core/model/system.php 修改即生效,无需清除缓存。
阅读全文
posted @ 2021-05-26 15:10 路三千
阅读(562)
评论(0)
推荐(0)
2021年5月21日
php实现精确加法,精确减法,精确乘法,精确除法
摘要: <?php /** * 精确加法 * @param [type] $a [description] * @param [type] $b [description] */ function math_add($a,$b,$scale = '2') { return bcadd($a,$b,$scal
阅读全文
posted @ 2021-05-21 11:51 路三千
阅读(309)
评论(0)
推荐(0)
2021年4月10日
微信小程序showToast后延迟跳转
摘要: 在wx.showToast的success中调用setTimeout函数 wx.showToast({ title: 'title', icon: 'none', duration: 2000, success: function () { setTimeout(function() { wx.na
阅读全文
posted @ 2021-04-10 15:29 路三千
阅读(396)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告