Skip to content

Commit

Permalink
修改
Browse files Browse the repository at this point in the history
  • Loading branch information
zitont committed Oct 22, 2024
1 parent ed381d4 commit 260b954
Showing 1 changed file with 11 additions and 76 deletions.
87 changes: 11 additions & 76 deletions src/config/php/1.md
Original file line number Diff line number Diff line change
@@ -1,85 +1,20 @@
---
# 文章标题
title: PHP 安装与配置指南
# 自定义封面图片
cover: /assets/img/php/php_logo.png
# 页面图标
icon: php
# 侧边栏顺序
order: 1
# 作者
author: zitont
# 写作时间
date: 2024-10-22
# 文章分类
icon: pen-to-square
date: 2022-01-01
category:
- 开发工具
- PHP
# 文章标签
- 苹果
tag:
- PHP
- Web开发
- 服务器端编程
# 文章置顶
sticky: true
# 星标文章
star: true
# 自定义页脚
footer: 本文由 zitont 撰写 | 最后更新于 2024-10-22
# 版权信息
copyright: 版权所有 © 2024 zitont
-
-
-
---

PHP(PHP: Hypertext Preprocessor)是一种广泛使用的开源脚本语言,特别适合于 Web 开发。本文将详细介绍 PHP 的安装、配置和基本使用方法。
# 苹果 1

<!-- more -->
## 标题 2

## PHP 简介
这里是内容。

<Badge text="服务器端脚本" type="tip" />
<Badge text="Web开发" type="info" />
### 标题 3

PHP 是一种主要用于 Web 开发的服务器端脚本语言,它具有以下优势:

1. 易学易用,语法简单
2. 跨平台,可在多种操作系统上运行
3. 与多种数据库系统兼容
4. 丰富的内置函数和扩展库
5. 活跃的社区支持和大量的开源项目

## PHP 下载

PHP 可以从官方网站下载:

- PHP 官方下载页面:[https://www.php.net/downloads.php](https://www.php.net/downloads.php)

对于 Windows 用户,推荐下载 Thread Safe 版本的 ZIP 包。

## PHP 安装步骤

以 Windows 为例,安装 PHP 的步骤如下:

<LinearProcessFlow>

### 下载 PHP

从官方网站下载最新的 PHP ZIP 包。

### 解压 PHP

![解压PHP文件](/assets/img/php/php_extract.png =500x)

将下载的 ZIP 文件解压到指定目录,例如 `C:\php`

### 配置 PHP

![编辑php.ini文件](/assets/img/php/php_ini_edit.png =500x)

在 PHP 目录中找到 `php.ini-development` 文件,将其重命名为 `php.ini`,然后用文本编辑器打开进行编辑。

### 设置扩展目录

`php.ini` 文件中找到并取消注释以下行:

```ini
extension_dir = "ext"
这里是内容。

0 comments on commit 260b954

Please sign in to comment.