A随行付POS机_赵 发表于 2019-11-7 10:48:25

「PHP从入门到颈椎病康复」基础篇——HelloWorld

需要的前驱知识

在学习这篇文章之前,需要有一点HTML的基础,需要的小伙伴可以点开我的主页,查看《「HTML从入门到颈椎病康复」》系列文章。
啥玩意是php

PHP:“超文本预处理器”,是一种通用开源 脚本语言。
概念太多,有需要的同学自行百度,比我说的清楚多了。
配置php环境

开发环境:win10+vs code
需要工具:

[*]php 7.3.11
[*]xampp
[*]xdebug
第一步
在vs code 中安装php插件
http://p3.pstatp.com/large/pgc-image/0fabea645aab4e5489e0656d8730b564

http://p1.pstatp.com/large/pgc-image/0e61eda43c2945a8940930ba0adb9683

第二步
在setting.json中加入以下代码
{ "php.validate.executablePath": "C:/php-7.3.11/php.exe"}
http://p1.pstatp.com/large/pgc-image/239a84a7ceab4c1e8d5f54713c44bc92

第三步
把Xdebug的dll放到php相关目录下面
http://p3.pstatp.com/large/pgc-image/9e3ca5ba242c4e42953a426e60519403

第四步
在php.ini的末尾加上如下代码,如果没有找到这个文件的话,可以复制php.ini-development修改后缀名后使用
zend_extension="C:/php-7.3.11/ext/php_xdebug-2.8.0beta2-7.3-vc15-nts-x86_64.dll"xdebug.remote_enable = 1xdebug.remote_autostart = 1
http://p1.pstatp.com/large/pgc-image/367d9211e1cb4bd5bda6a05c928c59c1

第五步
将“C:\php-7.3.11”添加到环境变量中
此电脑 -> 右键 ->属性->高级系统设置
http://p9.pstatp.com/large/pgc-image/9a5a291a6c9b413694251816c4df7db5

环境变量
http://p1.pstatp.com/large/pgc-image/012a3d2cac02489690060d42baa02c57

找到系统变量的path,双击点开编辑页面
http://p3.pstatp.com/large/pgc-image/dc223b9215474cd685e4b0b3bed1a83a

http://p3.pstatp.com/large/pgc-image/c6dc0602ebd94737980f2e4acbabd917

新建,将php的安装目录复制进去即可
http://p1.pstatp.com/large/pgc-image/31f7d6b1d10b4c3980be385e79b85ae4

保存后,我们回到vs code中,输入以下代码,检查环境是否配置成功
新建一个php文件,并输入以下代码

http://p1.pstatp.com/large/pgc-image/440d7550923b48d5b5885e39bc3d046e

右键,选择Run Code ,我们就可以看到传说中的helloworld
http://p1.pstatp.com/large/pgc-image/8c7dead486d04576953d20b72ba56999

至此,php的环境配置完成。
页: [1]
查看完整版本: 「PHP从入门到颈椎病康复」基础篇——HelloWorld