$sReview = array(
'number' => 3,
'orderby' => 'comment_date',
'order' => 'DESC',
'status' => 'approve',
'type' => '',
);
if( $comments = get_comments( $sReview ) ){
$d = "Y/m/d H:i";
foreach( $comments as $comment ){
$comment_date = get_comment_date( $d);
}
}