PHP code example of toreti / tempo

1. Go to this page and download the library: Download toreti/tempo library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

toreti / tempo example snippets


use Toreti\Tempo\Data;

$hoje = Data::hoje();

if ($hoje->diaUtil()) {
    die('Dia de trabalho duro');
}

if ($hoje->feriado() || $hoje->fimDeSemana()) {
    $proximoDiaUtil = $hoje->proximoDiaUtil();
    die('Dia de descanso, trabalho só no dia '.$proximoDiaUtil->formatoBR());
}