doti3/bar/src/time.php
2017-06-19 16:36:59 +02:00

17 lines
234 B
PHP
Executable file

#!/usr/bin/php
<?php
require __DIR__.'/base/block.php';
$format = $argv[1] ?? 'H:i:s';
$fullText = date($format);
echo block(
'time_'.$format,
[
'full_text' => $fullText,
'color' => color('date'),
]
);