以下是一个简单的PHP主题切换实例,通过修改配置文件来改变网站主题。
| 配置文件内容 | 说明 |
|---|---|
| theme_name=default | 设置当前主题为default |
| themes/default/index.php | 默认主题的首页文件 |
| themes/default/style.css | 默认主题的样式文件 |
| themes/another/index.php | 另一个主题的首页文件 |
| themes/another/style.css | 另一个主题的样式文件 |
1. 创建一个名为`config.php`的配置文件,并添加以下

```php
// 定义主题名称
$theme_name = "









