This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
$msg = "I'm a line that is a message.\n";
$path = $_SERVER['DOCUMENT_ROOT'] . '/logs/myawesome_logfile.txt';
$f = fopen($path, "a+");
fwrite($f, $msg);
fclose($f);
chmod($path, 0777);
$ourFileName = "./testFile.txt";
$ourFileHandle = fopen($ourFileName, 'w+') or die("can't open file");
fclose($ourFileHandle);
phpinfo();
?>