“Laravel -Lesungsprotokolldatei” Code-Antworten

Laravel Log Reader

composer require haruncpi/laravel-log-reader
Blue Batfish

Laravel -Lesungsprotokolldatei

use Illuminate\Support\Facades\File;
use Carbon\Carbon;

$date = new Carbon($request->get('date', today()));
$filePath = storage_path("logs/laravel-{$date->format('Y-m-d')}.log");
$data = [];
if (File::exists($filePath)) {
	$data = [
		'lastModified' => new Carbon(File::lastModified($filePath)),
		'size' => File::size($filePath),
		'file' => File::get($filePath),
	];
}
return $data;
Sirisak Max

Ähnliche Antworten wie “Laravel -Lesungsprotokolldatei”

Fragen ähnlich wie “Laravel -Lesungsprotokolldatei”

Weitere verwandte Antworten zu “Laravel -Lesungsprotokolldatei” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen