PHP 今日、昨日、本周、上周、本月常用起始时间戳和结束时间戳的时间处理类 Jackey PHP 2018-12-15 4,252 次浏览 0 评论 PHP, 日期, 时间戳 [codesyntax lang="php"] <?php class Time { /** * 返回今日开始和结束的时间戳 * * @return array */ public static function today() { return [ ...
PHP利用redis实现消息队列 Jackey PHP 2018-12-15 3,725 次浏览 0 评论 PHP, redis, 队列 将请求存入redis为了模拟多个用户的请求,使用一个for循环替代 [codesyntax lang="php"] //redis数据入队操作 $redis = new Redis(); $redis->connect('127.0.0.1',6379); for($i=0;$i<50;$i+...