admin管理员组

文章数量:1130349

I'm using these two lines:

$expires = strtotime( $_POST['expire_date']);
if($expires < time())

to test the time in the name=expire_date form against GMT time. But no matter what I do my expire date time is 5 hours off. I'm in GMT -5, so I'm trying to adjust the top line:

$expires = strtotime( $_POST['expire_date']) - (( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ));

But it's not working. Any ideas for correct GMT offset handling in Wordpress?

I'm using these two lines:

$expires = strtotime( $_POST['expire_date']);
if($expires < time())

to test the time in the name=expire_date form against GMT time. But no matter what I do my expire date time is 5 hours off. I'm in GMT -5, so I'm trying to adjust the top line:

$expires = strtotime( $_POST['expire_date']) - (( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ));

But it's not working. Any ideas for correct GMT offset handling in Wordpress?

本文标签: dateTimezone for Plugin