Answers for "create file if not exists in php"

PHP
1

php create file if not exist

<?php

$file = 'test.txt';

if(!is_file($file)){
    $contents = 'This is a test!';           // Some simple example content.
    file_put_contents($file, $contents);     // Save our content to the file.
}

?>
Posted by: Guest on June-17-2021
0

laravel create new file if not exists

if (!file_exists('somefile.txt')) {
    touch('somefile.txt', strtotime('-1 days'));
}
Posted by: Guest on August-13-2020

Code answers related to "create file if not exists in php"

Browse Popular Code Answers by Language