首页 > 代码库 > php程序helloworld

php程序helloworld

在centos64下面开发:

hello.php

#!/usr/bin/php<?php/*************************************************************************        * File: hello.php      * Brief:       * Author: Mr.HeBang      * Mail: liyoubdu@qq.com      * Created Time: 2014年11月11日 星期二 10时18分58秒 ************************************************************************/printf("hello world. my name is [%s].\n", "hebang");exit(0);

让php文件可运行:

chmod 777 hello.php

运行php程序:

./hello.php

运行效果:

 

完。

 

php程序helloworld