程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php設置8小時時差程序設置方法

php設置8小時時差程序設置方法

編輯:關於PHP編程

session_start();
date_default_timezone_set('asia/shanghai');
header("cache-control: no-cache, must-revalidate");
define('applicaton_root', dirname(__file__));
define('sys_root', dirname(dirname(__file__)).'/framework');
define('default_control', 'public');
include(sys_root . '/runtime.php教程');
$c=$_request['c'];
$a=$_request['a'];
$e=$_request['e'];
if($c==""){
 $_request['c']=$c='frame';
 $_request['a']=$a='index';
}
$tpl = tpl::singleton();
$tpl->assign('frame',1);
$globals['frame'] = 1;
if($c=='frame' && $a=='index'){
 $fc = $_request['fc'];
 $fa = $_request['fa'];
 if($fc==""){
  $fc = 'user';
 }
 if($fa==""){
  $fa = 'index';
 }
 $tpl->assign("fc",$fc);
 $tpl->assign("fa",$fa);
}
$main = dispatch($c,$a);
//echo $main;
//startframework();
$tpl->assign("title",gettitle());
$tpl->assign('main',$main);
$tpl->display('frame.html');
?>

看到加紅了沒,那就是我們要設置8小時時差程序設置方法 了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved