çalıştırdığınız dosya ile yaz.txt aynı dizinde ise aşağıdaki kodu dener misiniz?
date_default_timezone_set('Europe/Moscow');
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
$file = fopen( 'yazi.txt' , 'w' );
if( $file ) {
echo 'The file is open';
fclose( $file );
}else{
echo 'The file could not be open.';
}
Warning: fopen(yazi.txt): failed to open stream: Permission denied in /usr/share/nginx/html/yazi.php on line 7 The file could not be open.
buyrun