从一脸懵逼到运行成功,我经历了这些:
首先,要跑PHP代码,需要配置php环境。
配置PHP环境
- 下载PHPstudy: http://www.phpstudy.net/
运行phpstudy时若出现端口被占用:
端口被占用
- 非系统端口被占用了怎么办?https://jingyan.baidu.com/art…
- 80端口被系统占用:http://www.33lc.com/article/8…
- 80端口被SQL Server Reporting Services占用详解:https://wenku.baidu.com/view/…
tips:
- ctrl+shift+esc打开任务管理器。
- 关闭SQL服务时,右键计算机->管理->服务和应用程序->服务->SQL Server Reporting Services右键停止就可以了。
接下来配置hbuilder
- hbuilder配置PHP:https://jingyan.baidu.com/art…
之后你就可以写自己的php代码了,写PHP代码要注意几个头文件:
// 指定允许其他域名访问,解决跨域问题
header('Access-Control-Allow-Origin:*');
// 响应类型
header('Access-Control-Allow-Methods:POST');
// 响应头设置
header('Access-Control-Allow-Headers:x-requested-with,content-type');
//显示中文
header("Content-type: text/html; charset=utf-8");
在html里调用PHP文件时,要注意路径问题:http://blog.51cto.com/7464431…