我正在android中创建一个html5应用程序,我不得不将我的html文件扩展名更改为.php
才能使用它。我不想这样做。如何让php无需更改我的整个文件?感谢
<?php
$myarray[] = "noticable";
$filename = "geo.php";
$mystring = implode("\n", $myarray);
$numbytes = file_put_contents($filename, $mystring . "\n", FILE_APPEND);
print "$numbytes bytes written\n";
?>
我希望index.html
不是index.php