我想清除chrome扩展名中的文件内容,文件在服务器上。怎么做?

时间:2016-11-30 00:15:27

标签: javascript php google-chrome

我在chrome扩展程序的js文件中编写了以下代码。

var xhr_put = new XMLHttpRequest();
xhr_put.open('PUT',"https://something/index.php",true);

xhr_put.onreadystatechange = function()
{
    console.log('File Cleared',"Yes");
}

以下代码在我的PHP文件中。

$requestmethod = 'PUT';
if ($_REQUEST['REQUEST_METHOD'] === $requestmethod)
{
    $f = @fopen("facebookmsg.txt", "w");
     print "in here";
    if ($f !== false) {
    ftruncate($f, 0);
    fclose($f);
    echo "here";
    }
}

但是我在服务器上的文件并没有变空。我需要帮助解决什么问题以及如何纠正错误?

0 个答案:

没有答案