laravel写日志(文件存储和日志记录)
引入
use Illuminate\Support\Facades\Storage;//文件存储
use Illuminate\Support\Facades\Log;//日志
Storage::put( '111.txt', 1122221); // 文件存储保存日志,不仅是txt文件
//利用通道保存日志
$channel1 = Log::build([
'driver' => 'single',
'path' => storage_path('mylogs/channel1.log'),
]);
$channel1->info('需要保存的日志内容');
最近访问时间:2025-01-18 08:06:31