PHP/File Directory/File Open — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:04, 26 мая 2010
Checking That a File Exists
<?php
$myfile = "./test.txt";
if (file_exists ($myfile)){
$msg="File already exists. ";
}else{
$myfile = @fopen ($myfile, "w+") or die ("Couldn"t create the file" );
$msg= "File created! " ;
fclose ($myfile);
}
echo "$msg";
?>