## php环境的配置
在php官网上下载php安装包,而后将路径写入到系统路径中。
cmd下运用php -v来确认php环境是不是正常
## sublime下配置php环境
选中:Tools -> Build System -> New Build System....
添加如下配置: {
"cmd": ["php", "$file"],
"file_regex": "php$",
"selector": "source.php"
}ctrl + s 保留 命名为 : PHP.sublime-build
运行便是ctrl+b
|