14 lines
241 B
PHTML
14 lines
241 B
PHTML
5 years ago
|
<?php
|
||
|
namespace Base\Tool;
|
||
|
|
||
|
class Printer
|
||
|
{
|
||
|
public static function export($content, $isExit = false)
|
||
|
{
|
||
|
echo $content . ' ----- ' . date('Y-m-d H:i:s') . PHP_EOL;
|
||
|
if ($isExit) {
|
||
|
exit(0);
|
||
|
}
|
||
|
}
|
||
|
}
|