Unix timestamp for post comment

Is there any function/code snippet to retrieve the unix time stamp of the comment on a post? The WordPress default function comment_time(); returns the time of the post in 12hr format (not helpful).

4 Answers
4

Use:

global $comment;
$timestamp = strtotime("{$comment->comment_date_gmt} GMT");

Regards.

Leave a Comment