PHP 快速導覽 - 核心延伸函數 日期、時間相關 strftime()

內建函數 (function) strftime() 依據不同地區設定,格式化輸出時間字串 (string)

函數說明
string strftime(string $format [, int $timestamp = time()])參數格式化字串。


參數 (parameter) 為字串,須注意回傳的也是字串。


舉例如下
<?php
setlocale(LC_TIME, "C");
echo strftime("%A") . "\n";
setlocale(LC_TIME, "fi_FI");
echo strftime(" in Finnish is %A,") . "\n";
setlocale(LC_TIME, "fr_FR");
echo strftime(" in French %A and") . "\n";
setlocale(LC_TIME, "de_DE");
echo strftime(" in German %A.\n") . "\n";

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:datetime40.php
    功能:示範 PHP 程式 
    作者:張凱慶
    時間:西元 2013 年 2 月 */
?>


執行結果如下



中英文術語對照
函數function
字串string
參數parameter


您可以繼續參考
日期、時間相關的類別與函數


相關目錄
回 PHP 快速導覽
回 PHP 教材
回首頁


參考資料
http://www.php.net/manual/en/function.strftime.php

沒有留言: