Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 Windows 8 上安装了 wammp。一个简单的测试echo 'test';没有显示“测试”。当我查看浏览器的“显示源代码”时,它显示echo 'test';这表明 apache 不处理 php 代码。
echo 'test';
这里发生了什么,有人解决了这个问题吗?
如果我猜对了,并且您实际上只是echo 'test';在 PHP 文件中编写了代码,那么您需要添加 PHP 标记:
<?php echo 'test'; ?>