# php-starter
**Repository Path**: stephenykk/php-starter
## Basic Information
- **Project Name**: php-starter
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2023-12-28
- **Last Updated**: 2025-02-20
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# php learning note
## php 交互模式
```bash
# 进入交互模式, 语句需要分号结尾
php -a
```
## 安装 xampp
apache 设置 alias
```ini
# httpd.conf
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
Alias /php-lm D:/pan/dev/php-lm/src
```
打开 XAMP 控制面板,启动 Apache, 然后浏览器访问 `http://localhost/php-lm`