$content = "test text";
$fp = fopen($_SERVER['DOCUMENT_ROOT'] . "/1file.txt","wb");
fwrite($fp,$content);
fclose($fp);
当调用上面的脚本时,它不会在create_file.php中编写的脚本下面运行,因此不会创建文本文件。请让我知道如何解决这个问题。
<?php
if(!isset($_SESSION))
{
session_start();
}
$login_session=$_SESSION['email'];
?>