我很困惑为什么我的日期函数在我用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>
答案 0 :(得分:1)
更改此
date_deafault_timezone_set('UTC'); // deafault
到
date_default_timezone_set('UTC');
答案 1 :(得分:0)
你需要创建.php文件,而不是.html文件来运行php代码。并且还需要php服务器来运行php代码。您可能需要像服务器这样的apache。尝试下载xampp,然后尝试
答案 2 :(得分:0)
date_default_timezone_set('UTC'); // misspelled default
echo date("l");