note/程序开发/编程语言/PHP.md
2023-07-05 09:34:06 +08:00

30 lines
438 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 学习资源
## 微信书城
- PHP7底层设计与源码实现
# 安装
## 下载
- [PHP nts](https://windows.php.net/downloads/releases/archives/ )
## 配置
```ini
#连接nxign
cgi.fix_pathinfo=1
#扩展目录
extension_dir = "ext"
#启用mysql扩展
extension=mysqli
```
## 运行
```shell
#启动php-cgiphp解析器nxign会主动连接cgi请求解析php代码
php-cgi.exe -b 127.0.0.1:9000 -c php.ini
```
# 语法