我建立了一个本地网站。它或多或少都有效。重新启动计算机以设置时区,如下所示:http://hints.macworld.com/article.php?story=20090831101932728
现在,当我转到http://localhost/index.php
时,我再也看不到该网站了,只是其中的一部分代码:$v) { protect_array($arr[$k]); } } else ......[two pages of the unformatted code here]
它失败的完整功能如下所示:
function protect_array(&$arr) {
if (is_array($arr)) {
foreach ($arr as $k=>$v) {
protect_array($arr[$k]);
}
} else {
我有svn,我检查过网站代码的任何部分都没有意外更改。
我尝试重启appache:sudo /usr/sbin/apachectl restart
我没有网络编程经验,这对我来说很奇怪。通常会出现这样的问题吗? 我该怎么做才能解决它?
答案 0 :(得分:1)
您没有以PHP身份运行它,是吗;)
您需要在计算机上运行服务器,并且URL必须为http://localhost/yourfile.php
或类似,以便处理和运行PHP。