使用cloud9学习php

时间:2016-02-02 03:45:30

标签: php cloud9-ide

我的班级正在学习编码。它不会超过php,所以我试图自己学习它。我们使用jsbin和cloud9。 Cloud9非常好,但我在使用它时遇到了麻烦。我想跟进一个特定的教程。

这是php的教程。 http://www.chickensmoothie.com/tutorial/tut2/index.html

我制作了一个html文件和一个php文件,代码相同。 这是代码:

<!DOCTYPE html>
<html>
<body>
<h1>My first page</h1>
<?php 
//Tell the browser that we are sending it a PNG image to display 
header("Content-Type: image/png"); 
//Echo the contents of the image file called "dogbaby.png" to send it to the browser 
readfile("/images/pets/dogbaby.png"); 
?>
</body>
</html> 

结束脚本

如果我将其保存为html文件,则显示“第一页”就好了,但是当我预览网页时不显示php图像。该教程明确指出,当它工作时,你应该能够看到图像,如果你没有看到图像,它就会出错。所以我把它保存为php文件。我单击相同的运行和预览按钮,正确显示html文件预览的网页。然而,它不是显示网站,而是打开一个空白页面并将文本文件下载到我的桌​​面。文本文件是实际的php文本。

有没有人知道如何在cloud9中预览php,或者任何专门用于编写/测试php的网站?

1 个答案:

答案 0 :(得分:0)

需要使用Apache2提供PHP文件。如果您尝试在计算机上打开PHP文件,只要双击它就可以获得同样的效果。

单击运行按钮以运行Apache或打开终端并从那里启动Apache。 Apache提供服务后,您可以预览PHP文件。