有人可以告诉我如何在Codeigniter中创建时间/日期滴答并解释该代码吗?我现在真的很困惑,因为几天前开始学习CI。我喜欢从服务器而不是用户PC获取日期和时间。这就是我到目前为止所做的并且坚持了下来。
这是视图文件
<script>
$(document).ready(function() {
setInterval(timestamp, 1000);
});
function timestamp() {
$.ajax({
url: 'index.php',
success: function(data) {
$('#timestamp').html(data);
},
});
}
</script>
</head>
<body>
<div class = "page">
<header>
<time id="timestamp">
<?php
date_default_timezone_set('YOUR TIMEZONE');
echo date('l d F Y - H:i:s');
?>
</time>