Bu şekilde kullanabilirsiniz;
$type = "file";
$file = "giriskayitlari.txt";
if(!empty($type) && $type == "file") {
if(is_writable($file)) {
$fc = file_get_contents($file);
$fh = fopen($file, 'w');
$content = "|---------------------\n";
$content .= "| Time: ".$date->format('Y-m-d H:i:s')."\n";
$content .= "| HTTP Referer: ".$href ."\n";
$content .= "| Region: ".$regionName ."\n";
$content .= "| City: ".$city ."\n";
if(empty($fc)) {
$content .= "|---------------------\n";
}
fwrite($fh, $content.$fc);
fclose($fh);
} else {
chmod($file, 0777);
die("<pre>Content could not load.\n");
die("If you are the owner of this site, please adjust file permissions to allow writing to the file specified in config.</pre>");
}
}
Eyvallah hocam çok teşekkürler.