用PHP显示中文星期几的方法

<?php
$arr=array("天","一","二","三","四","五","六");
echo "2009-11-16是星期".$arr[date("w",strtotime("2009-11-16"))];
?>

本页的评论功能已关闭