1樓:
strtotime("2012-11-02 08:36:51");
這個是字串轉換成時間戳
資料庫讀出來就這樣寫
strtotime($rs['posttime']);
time()這個是輸出當前時間的時間戳
strtotime還可以這樣用,自己試試
echo(strtotime("now"));
echo(strtotime("3 october 2005"));
echo(strtotime("+5 hours"));
echo(strtotime("+1 week"));
echo(strtotime("+1 week 3 days 7 hours 5 seconds"));
echo(strtotime("next monday"));
echo(strtotime("last sunday"));
2樓:匿名使用者
那個叫unix時間戳~
用strtotime()函式將某個函式轉換為時間戳你下個php中文手冊,這東西寫程式必備
3樓:匿名使用者
汗 那直接用replace()替換成你想要的得了 time()這是一個輸出時間戳
php時間顯示:echo date("y-m-d h:i:s"),總顯示的時間不對,就是h部分不對?
4樓:陽光上的橋
修改抄襲php.ini,增
加下bai面的du內zhi
容:dao
[date]
; defines the default timezone used by the date functions
date.timezone = asia/chongqing
5樓:匿名使用者
時區問題
在php.ini 裡修改
或者在檔案的開頭 加入
ini_set("date.timezone","asia/chongqing");
6樓:崔兆運
時區的問題,誰讓寫php的人不是東八區的呢 ,一樓正解
7樓:
@ini_set("date.timezone", "asia/shanghai");
PHP怎麼迴圈二維陣列的資料,php怎樣資料庫行迴圈生成二維陣列並替換其中的值再生成新的二維陣列
class data all name i 不帶 i 的話,class data也是二維陣列 all name 0 class data 0 all name 1 class data 1 all name 2 class data 2 換成 all name 0 class data 0 0 al...
php怎麼把變數賦值到文字框裡
php中,我想把一個變數的內容放入一個文字框內,該怎麼做?補充 這個問題嗎?在連結資料庫後,即mysql connect 後加入下面語句 mysql query set names gbk 然後 如bai 下 du logcont 1 從資料 zhi庫取值dao 顯示結果容 雖然你寫的很多bai但還...
如何利用PHP執行 SQL檔案,怎樣在一個PHP檔案中執行另一個PHP檔案
二種方法 1.在伺服器端執行 即在伺服器端php檔案解析的時候執行,使用include require 函式將檔案引入 include thatday.php 然後呼叫thatday.php中的主函式 2.在客戶端執行 此方法的效果等同於iframe,即會產對所執行檔案的一次訪問.怎麼在linux下...