Exemple #1
0
function _w($t, $show_styled = true)
{
    $text = '';
    if ($show_styled) {
        $text = "CRON#" . CronManager::getCronProcessIndex() . " [" . date("d H:i:s") . "] \t - {$t}.\n";
    } else {
        $text = $t;
    }
    if (defined('STDOUT')) {
        fwrite(STDOUT, $text);
    } else {
        echo $text;
    }
}