假设我有
select * from table from date = $ curdate
我如何根据用户日期的数据?
每个用户当然都有自己的时区
由于
答案 0 :(得分:0)
使用此
<?php
date_default_timezone_set('Africa/Cairo');//your time zone
if(array_key_exists('curdate', $_GET) )
{
$curdate=$_GET['curdate'];
}
else
{
$curdate=date('Y-m-d');
}
?>
此外,如果您的PHP.ini配置正确,您的默认时区将是您配置的。