日期与时间函数库

strftime

(PHP3 , PHP4)

strftime ---  按照场所设定将本地时间/日期格式化

语法 : string strftime (string format [, int timestamp])

说明 : 

依照给予的格式化字符串使用给予的timestamp传回一格式化字符串,如果没有给予timestamp则使用目前本地时间,月份和星期几的(weekday)名称及其它语言(language)取决于setlocale( )。

以下是格式化字符串中认定的转换 :

Example :

<?php

   setlocale ("LC_TIME", "C");

   print (strftime ("%A in Finnish is "));

   setlocale ("LC_TIME", "fi_FI");

   print (strftime ("%A, in French "));

   setlocale ("LC_TIME", "fr_CA");

   print (strftime ("%A and in German "));

   setlocale ("LC_TIME", "de_DE");

   print (strftime ("%A.\n"));
      

?>

如果在你的系统有安装各别的场所(locale),此范例会运作

参考 : setlocale( )  mktime( )


上一页 首页 下一页