x
 
<!DOCTYPE html>
<html>
<body>
<?php
// 输出:1975年10月3日是星期五
echo "1975年10月3日是 " . date("l", gmmktime(0,0,0,10,3,1975));
?>
</body>
</html>