倒计时时钟php源码,php 倒计时示例源码

【实例简介】

【实例截图】

倒计时时钟php源码,php 倒计时示例源码_第1张图片

【核心代码】

/*

*倒计时

*author: Motea

*mail: [email protected]

*description:可修改倒计时时间,详情看下方注释。

*/

defined('IN_IA') or exit('Access Denied');

class djsModuleProcessor extends WeModuleProcessor {

public $name = 'djsModuleProcessor';

public function isNeedInitContext() {

return 0;

}

public function respond() {

global $_W;

$rid = $this->rule;

$sql = "SELECT * FROM ".tablename('djs')." WHERE `rid`=:rid and enabled=1 LIMIT 1";

$row = pdo_fetch($sql, array(':rid' => $rid));

$time = time

你可能感兴趣的:(倒计时时钟php源码)