我不得不将我的html文件更改为php才能正常工作

时间:2016-08-24 21:03:09

标签: php html5

我正在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

0 个答案:

没有答案