Answers for "php create a file if not exist"

PHP
12

php file exist

<?php
$filename = '/path/to/foo.txt';

if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}
?>
Posted by: Guest on April-14-2020
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 "php create a file if not exist"

Browse Popular Code Answers by Language