程序开发
-
-
使用mysqli完成的一个数据库操作类
<?php class lib_mysqli { protected $mysqli;//mysqli实例对象 public $sql;//sql语句 protected $rs;//结果集 protected&…… -
缓存类的编写:支持文件缓存和memcache缓存
<?php //与上一篇文章:使用mysqli完成的一个数据库操作类 搭配使用 abstract class Abstract_Cache { pr…… -
[转]谷歌验证 (Google Authenticator) PHP版
开启Google的登陆二步验证(即Google Authenticator服务)后用户登陆时需要输入额外由手机客户端生成的一次性密码。 开启Google的登陆二步验证(即Google Auth…… -
Centos 7.x 安装 Swoole 4.0.x
安装依赖包 openssl, openssl-devel, 安装编译程序 gcc, gcc-c++ 安装http2依赖 nghttp2 https://github.com/nghttp2/nghttp2/releases 下载后解…… -
mysql 数据库中根据当前系统时间,取前后几秒 几分钟 几小时 几天
取当前时间: select current_timestamp; 输出:2016-06-16 16:12:52 select now(); 输出:2016-06-16 16:12:52 取当前时间的前一分钟: select SUBDATE……