这个系列是“入门”用的,看看各种语言如何写Hello World
这一篇先来PHP的
terminal
terminal 在你的电脑里叫“终端”或者“命令行”
$ mkdir php
$ cd php
index.php
,里面的代码是这样的<?php
echo "hello world !";
php index.php
php -S 0.0.0.0:8080
PHP 5.5.30 Development Server started at Thu Jan 21 12:49:35 2016
Listening on http://0.0.0.0:8080
Document root is /Users/Echo/php
Press Ctrl-C to quit.
这个时候打开你的浏览器,在地址栏输入 http://127.0.0.1:8080
hello world !
出现了。