Using your specific example, you cannot compare human time, only computer time. This is why strtotime is useful.
http://php.net/manual/en/function.strtotime.php
<?php
$current_time = time();
$my_time=strtotime( date('Y-m-d') . ' 5:00 pm' );
//uncomment if you want to check in the morning as well
//$my_earlytime=strtotime( date('Y-m-d') . ' 8:00 am' );
//uncomment this line if you want to check in the morning as well
//if ( $current_time > $my_time || $current_time < $my_earlytime ){
//comment this line if you want to check in the morning as well
if ( $current_time > $my_time ) {
//after 5:00pm it will hide
//hides before 8am if you check early time
echo 'Hide';
}
else {
//after midnight it will go back to show
//unless you also check the early time
echo 'show';
}
?>