php display text according to time

1

I'm doing a portfolio page.

And I have this doubt, if when the person accesses my site at night, display the good night message on the screen.

    
asked by anonymous 22.04.2018 / 04:05

1 answer

2

date_default_timezone_set - sets the default time zone used by all date and time in a script

date - Format the date and local time

date_default_timezone_set('America/Sao_Paulo');

$hour = date('H');

    if($hour >= 6 && $hour < 12) {
        echo "bom dia";
    }else if($hour >= 12 && $hour < 18) {
        echo "boa tarde";
    }else if($hour >= 18 && $hour < 24) {
        echo "boa noite";
    } else {
        echo "vai dormir";
    }

See working at PHP Sandbox, PHP online test

    
22.04.2018 / 17:03