search
HomeBackend DevelopmentPHP Tutorial多种PHP安装拓展方法

PHP有多种方式来安装拓展, 主要有 包管理式的yum安装、pecl安装, 以及底层的源码编译安装。

包管理式的安装卸载尤为方便,而源码编译式的安装则方便参数调优。

一般的搭建本机开发环境推荐包管理式的安装,节约时间。而线上部署环境则推荐编译安装, 方便调优。


yum安装

## yum方式安装能自动安装拓展的.so动态库,并配置好php.ini# 如安装mysql拓展yum search mysql|grep php  #我们搜索到拓展名为 php-mysql.x86_64sudo yum install php-mysql  #这样php-mysql拓展便安装好了# 如果出现拓展版本和php版本冲突问题, 可安装如下任意yum源:atomic-release.noarchwebtatic-release.noarch# 这些源提供了其他版本的php拓展,同时每个源针对特定拓展都会提供多个版本,你只需安装一个源即可。如:atomic源下能搜索到5.4版的mysql拓展  atomic-php54-php-mysql.x86_64 webtatic源下能搜索到5.5版本的mysql拓展 php55w-mysql.x86_64


pecl安装

# 我们需要先从pear官网下载 go-pear 工具# 这个工具将帮我们同时安装 pecl包管理器(管理php的C拓展) pear包管理器(管理php类库)wget http://pear.php.net/go-pear.phar# 安装工具# 安装过程除非特别指定,否则默认将工具安装到 /home/用户名/pear/bin 目录下php go-pear.phar# 将工具目录添加到环境变量中# 编辑/etc/profile 追加一行配置export PATH=$PATH:/home/用户名/pear/bin# 加载环境配置source /etc/profile# 配置工具的php_ini选项,这样安装拓展时pecl工具就能帮我们自动配置php.ini文件了# vim /home/用户名/pear/share/pear/PEAR/Config.php# 搜索php_ini, default键修改为你的php.ini文件路径:        'php_ini' => array(            'type' => 'file',            'default' => '/etc/php.ini',            'doc' => 'location of php.ini in which to enable PECL extensions on install',            'prompt' => 'php.ini location',            'group' => 'File Locations (Advanced)',            ),   #确认一下,配置起效pecl config-get php_ini  #配置成功将显示 /etc/php.ini# 搜索mysql拓展pecl search mysql# 这时一般会提示我们更新工具, 则我们依据提示进行更新sudo pecl channel-update pecl.php.net# 再次搜索mysql拓展, 成功pecl search mysql# 安装拓展pecl install  mysql


源码编译安装

# 概略讲解, 下次补充# 下载拓展源码,进入源码目录, 执行phpize指令生成编译配置文件 configure 检测脚本, # 执行 configure脚本 结合参数 生成 编译配置文件makefile# make & make install 生动该拓展的动态库# 迁移生成的拓展动态库 .so 文件到php.ini中配置好的extension_dir中# php.ini 增加一个节区该拓展的配置信息



检查mysql拓展是否安装成功

php -i | grep mysql

成功安装后上面命令将显示一个节区的mysql拓展状态信息。

但拓展加载到运行环境中还需要你重启 web服务 亦或是 php-fpm


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!