我已为我的网站配置了Google云端。
我的问题是我的应用程序是在php和.php文件不受支持和查看为文本。请打开链接以获取想法。
为什么php文件像文本文件一样执行?
这是我通过google cloud ip打开此文件时获得的输出,我上传了它:
<?php
$dir = sys_get_temp_dir();
$tmp = tempnam($dir, "foo");
file_put_contents($tmp, "hello")
$f = fopen($tmp, "a");
fwrite($f, " world");
fclose($f)
echo file_get_contents($tmp);
P.S。它应该打印Hello World