php学习笔记二:第一个php程序 hello world!


第一个php程序 hello world!

前提条件:已经安装 xampp 和 phpstorm 

xampp 安装到了 D:\xampp


1 打开 phpstorm


2 新建项目

保存项目到  D:\WorkTest\Php


3 添加 index.php 文件


4 复制以下内容  index.php  内,保存文件




    
    


Hello World

"; ?>
this is index.php page
 
5 在 D:\xampp\htdocs 目录下新建 myPhp 文件夹,将 index.php   文件复制到该目录下

 D:\xampp\htdocs\myPhp\index.php


6 打开 xampp ,运行 apache 服务,如果按钮由 start 变为 stop ,OK apache 服务启动成功~!

注:启动有可能失败,多数是因为默认的80 端口 被占用,所以直接把 xampp 默认端口修改为 8081 。修方法网上找下,比较容易。后面也会介绍。


7 访问页面

http://localhost:8081/myphp/index.php



你可能感兴趣的:(php)