我在myphp.php的同一文件夹上有一个test.txt文件,test.txt为空,myphp.php有这个:
<?php
$g = fopen("test.txt", "w+");
fwrite($g, 'some text here');
fclose($g);
当我输入www.mysite.com/myphp.php时,它只有在我获得公众许可的情况下才会起作用#34;写&#34; (ex 666)在test.txt上,但我希望它与664一起使用,是否可能?