123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace app\index\controller;
- use app\common\model\Art;
- use app\common\model\ArtClass;
- use think\facade\Log;
- class Index
- {
- public function index()
- {
- echo "hello " . date("Y-m-d H:i:s");
- }
- public function testDel()
- {
- Log::record(date("Y-m-d H:i:s") . "==================");
- }
- private function writeln($obj)
- {
- echo print_r($obj, true) . "\r\n<br />";
- }
- }
|