以下代码检查目录'dat';如果它不存在,它会创建一个。那部分工作得很好;我需要的是它将文件写入AJAX可以从中读取的目录。
这是php ...
//checks for 'dat' directory; if false, creates it, if true, does nothing.
$dir = 'c:\wamp\www\dat';
if(file_exists($dir)){
return;
}
else{
mkdir ('C:\wamp\www\dat',0700);
}
//writes chats to file
$data = fopen($dir. "/chatlog". date('d'). '.txt', 'a+');
fwrite($data, $speak);
fclose($data);
}
这是AJAX;我在这里不需要像上面那样多的帮助,但是如果你为下面的AJAX提供帮助我不会抱怨,主要是让它从'dat'目录中的文件中读取...
xhr.open("GET","chatlog<?php /*stamps the chatlog file with date (numerical day only)*/ echo date("d");?>.txt",true);
答案 0 :(得分:0)
您的PHP脚本在 www 中运行,然后,您的文件就在那里创建。
如果要在 www / dat 目录中创建文件,只需更改此行
$file = "chatlog". date('d'). ".txt";
这个
$file = 'dat\chatlog'. date('d'). '.txt';