随笔 - 170
文章 - 1
评论 - 5
阅读 -
27万
08 2018 档案
每周散记 20180820
摘要:验证码处理相关:https://www.cnblogs.com/beer/p/7877570.htmlhttps://blog.csdn.net/Neleuska/article/details/80040304https://zhuanlan.zhihu.com/p/26078299 php 异常
阅读全文
每周散记 20180813
摘要:1. UML 统一建模语言 参考: https://blog.csdn.net/soft_zzti/article/details/79811923 https://www.cnblogs.com/lucky_hu/p/9006282.html 2. api编写 数据表示 业务逻辑怎么表示? 思维导
阅读全文
php 异常捕获的坑
摘要:thinkphp 框架需要注意 书写为(Exception $e)将无效 需要写成 (\Exception $e) try { throw new \Exception("Error Processing Request", 1);} catch (\Exception $e){ //如书写为(Ex
阅读全文
每周散记 20180806
摘要:1. 文件删除 linux 中文文件名 带空格等特殊字符名称的文件删除将文件名用引号抱起来, 删除多个是 用空格隔开如:rm '文件名1' '文件2' https://www.cnblogs.com/jhj117/p/4067887.html 2. except 使用 太频繁还是用免密码登录方便 安
阅读全文
转: Linux mount/unmount命令
摘要:https://blog.csdn.net/okhymok/article/details/76616892 楼主具体哪里转的 我不清楚 好像没看到原始出处 开机自动挂载 如果我们想实现开机自动挂载某设备,只要修改/etc/fstab文件即可。 文件挂载的配置文件:/etc/fstab 查看此文件可
阅读全文