IT into a deep sea of PHP development environment to build

1. Introduction:
PHP language description: https://baike.baidu.com/item/PHP/9337?fr=aladdin
PHP development environment to build:
①.PHPstorm + Phpstudy
②.Dreamweaver + Phpstudy
③EPP3 + Phpstudy

+ Phpstudy PhpStorm 1.1:
PhpStorm official website to download:
https://www.jetbrains.com/phpstorm/
network disk link: link:
https://pan.baidu.com/s/1jqMtkceCgulPHd7B2Q_sfQ
extraction code: 1w2f (copy the contents of this post open the Baidu network disk phone App, operation more convenient oh)
Phpstudy official website to download: https://www.xp.cn/wenda/401.html
after installing the software, start the configuration environment, start by creating a new project, the project must be created the WWW Phpstudy installation directory under the path, then a new .php procedure, as shown below and then click Edit Congurations, Ann order to complete the configuration according to the following FIG.Here Insert Picture Description

接着进入以下界面,根据下图来完成配置,新建PHP Web Application:
Here Insert Picture Description
接着是修改配置,Name表示创建开发环境的名字(自定义);Server表示服务,需要重新配置,Name表示服务器名称(自定义),接着是Host,如果是使用Phpstudy就修改为localhost,Port端口号默认为80,Debugger为Xdebug,完成后点击Apply保存;最后修改Start URL(项目的相对路径即可,默认是在WWW下),Browser表示运行浏览器,配置完成后,点击Apply保存:
Here Insert Picture Description
运行时,需要打开Phpstudy,需要开启Apach和MySQl(需要使用数据库时开启)服务器
Here Insert Picture Description
运行效果如下图所示:
Here Insert Picture Description
Here Insert Picture Description

1.2 Dreamweaver+Phpstudy:
Deamwever官网下载:
https://www.adobe.com/products/dreamweaver.html#
百度网盘快速安装链接:
链接:https://pan.baidu.com/s/1PwQ0XBKhH6bzvILI5otWYA
提取码:vxzj
压缩包安装:
https://pan.baidu.com/s/1gTlY8cetxXBzc2wINjdR9w
提取码:upsz
安装完成后开始配置环境:
首先打开安装的程序,然后创建一个项目(必须存在于Phpstudy的WWW目录下),如下图所示:
Here Insert Picture Description
接着开始配置站点(因为Dreamweaver自带服务器,可以不使用外部服务器,但建议新手使用站点管理项目更加得心应手),选择新建站点,接着确定站点名字:
Here Insert Picture Description
接着开始配置服务器:包括以下几个内容:
Here Insert Picture Description
最后保存站点,在站点下创建一个hello.php,代码如下:

<?php
echo 'hello,world!'
?>

点击运行效果如图:
Here Insert Picture Description

1.3 EPP3+Phpstudy
EPP3软件下载:
http://www.uzzf.com/soft/29743.html

百度网盘地址:
https://pan.baidu.com/s/1jN9QkW-UCAmVQDKN37ohnQ
提取码:hzof
EPP3相比较前面两种环境,更加简单,只需要将工作目录放置于Phpstudy的WWW目录下即可,这里不再赘述。

Released three original articles · won praise 1 · views 78

Guess you like

Origin blog.csdn.net/qxyloveyy/article/details/104226399