fwrite无法在包含文件中工作

时间:2017-03-06 11:39:56

标签: php include fopen fwrite

我有一个php文件“test.php”,其代码如下

$file = fopen("../testwrite.php","w");
echo fwrite($file,"<h1>this is for testing</h1>");
fclose($file);

现在我还有一个名为original.php的php文件,其中包含了test.php。 但是当我运行original.php时,fwrite函数没有任何影响。 “testwrite.php”不写作。

但是如果我直接运行test.php那么它正在运行,testwrite.php会写但内容。

original.php的内容如下,

<?php include_once 'test.php'; 

// other process ?>

那么这里有什么问题?

0 个答案:

没有答案