关于php:如何获取用户的本地时间而不是服务器的时间?

How can I get the user's local time instead of the server's time?

我怎样才能获得客户端的时间?
当我使用date()时,它返回服务器的时间。


这是一个"PHP"解决方案:

1
2
3
4
echo '<script type="text/javascript">
var x = new Date()
document.write(x)
'
;