You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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);
|
||
|
}
|
||
|
}
|
||
|
}
|