Laravel erstellen Sie eine neue Datei, wenn nicht existiert
if (!file_exists('somefile.txt')) {
touch('somefile.txt', strtotime('-1 days'));
}
Blue-eyed Bat
if (!file_exists('somefile.txt')) {
touch('somefile.txt', strtotime('-1 days'));
}