Skip to content

Instantly share code, notes, and snippets.

@nurullahisik
Last active February 12, 2019 12:44
Show Gist options
  • Save nurullahisik/0c0ee46a7ac405cd88b3337d1804e867 to your computer and use it in GitHub Desktop.
Save nurullahisik/0c0ee46a7ac405cd88b3337d1804e867 to your computer and use it in GitHub Desktop.
Create file with unique file name With PHP
<?php
$temp_file = tempnam("/", "FOO");
echo $temp_file;
// $file = fopen($temp_file, "w");
// fwrite($file, "temp file content");
// fclose($file);
// bir takım kodlar
//unlink($temp_file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment