阁主小札php常用功能封装-全能验证码类 前言这个验证码类是我将Thinkphp的Captcha类进行移植,使其不依赖thinkphp框架。该类功能非常丰富,而且生成的验证码很安全。使用前记得session_start();该类有资源包,请看... 06月13日 4,966 ℃ 发表评论 阅读全文
阁主小札php异常处理 try { } catch (Exception $e) { echo 'Message: ' . $e->getMessage(); throw new Exception(); } 05月26日 2,286 ℃ 发表评论 阅读全文
阁主小札php常用功能封装-http访问(多线程版) /* @author: 东阁-晓影 @version: 4.0 @time: 2018/5/19 @require: phpVersion >= 5.6 & CURL扩展 @caption: 完美支持... 05月19日 3,636 ℃ 发表评论 阅读全文
阁主小札php常用功能封装-http访问(单线程版) /* @author: 东阁-晓影 @version: 3.7 @time: 2018/5/27 @require: phpVersion>=5.6 & curl扩展 @caption: 完美支持ge... 05月14日 10,725 ℃ 1 阅读全文
阁主小札php常用功能封装-redis class RedisPro extends Redis { public function __construct() { parent::__construct(); $this->connect... 05月14日 3,925 ℃ 发表评论 阅读全文
阁主小札php常用功能封装-Mysql操作 class DBconn { public $link; public function __construct($user = "", $pass = "", $dbName = "", $host... 05月14日 2,656 ℃ 发表评论 阅读全文