0

我很困惑为什么当我在 chrome 中打开它时我的日期函数没有出现在这段代码中。该文件保存为 .php 文件。我是 PHP 的新手,昨天刚开始,想尝试在我的 HTML 代码中添加一些代码,我现在有任何帮助,我们将不胜感激。

<html>
<head>
    <title>David Iacovino</title>
</head>
<body bgcolor="62,54,100">
<center>
<h1>Page</h1>
<br></br>
<font size="4", color = "gray", face = "times new roman">Monday Evenings 6:30-9:15</font>
<img src="http://cdn.bleacherreport.net/images_root/slides/photos/000/268/563/cesar_logo1_display_image.jpg?1277255126" height= 100 width= 100>
<br></br>
<a href="https://www.facebook.com/"</a>Facebook</a>
<br></br>
<?php
    date_default_timezone_set('UTC');
    echo date("l");
?>
</center>
</body>
</html>
4

3 回答 3

1

改变这个

date_deafault_timezone_set('UTC');  // deafault

date_default_timezone_set('UTC');
于 2013-03-19T05:42:32.483 回答
0

您需要创建 .php 文件而不是 .html 文件来运行 php 代码。并且还需要 php 服务器来运行 php 代码。您可能需要类似 apache 的服务器。尝试下载xampp,然后尝试

于 2013-03-19T05:41:58.960 回答
0
date_default_timezone_set('UTC'); // misspelled default

echo date("l");
于 2013-03-19T05:42:30.627 回答