Table of Contents
问题:
环境:
回复内容:
Home Backend Development PHP Tutorial linux - 怎样让 php 在 cli 与 fpm 环境下运行时加载不同的扩展 ?

linux - 怎样让 php 在 cli 与 fpm 环境下运行时加载不同的扩展 ?

Jun 06, 2016 pm 08:20 PM
linux php

问题:

由于开启了 xdebug 扩展, 导致使用 composer 时提示:

<code>You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
</code>
Copy after login
Copy after login

所以想在 cli 下不再加载 xdebug

环境:

  • linux 为 archlinux

  • php 通过 pacman 安装, 版本 7.0.1

  • web服务通过 php-fpm 运行

配置文件分布:

<code>/etc/php
├── conf.d
│   └── xdebug.ini
├── fpm.d
├── pear.conf
├── php-fpm.conf
├── php-fpm.d
│   └── www.conf
├── php.ini
└── php.ini.pacnew
</code>
Copy after login
Copy after login

对比 ubuntu 下 通过 apt 安装的 php 配置文件分布:

<code>/etc/php5/
├── cli
│   ├── conf.d
│   └── php.ini
├── fpm
│   ├── conf.d
│   │   ├── 20-xdebug.ini -> ../../mods-available/xdebug.ini
│   ├── php-fpm.conf
│   ├── php.ini
│   └── pool.d
│       └── www.conf
└── mods-available
    └── xdebug.ini
</code>
Copy after login
Copy after login

---update ---

  • https://launchpadlibrarian.net/92790964/buildlog_ubuntu-hardy-amd64.php5_5.2.4-2ubuntu5.23_BUILDING.txt.gz

  • https://projects.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/php

不自行编译安装,重新指定各项config参数的情况下, 也只好手动指定 php.ini 运行了

回复内容:

问题:

由于开启了 xdebug 扩展, 导致使用 composer 时提示:

<code>You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
</code>
Copy after login
Copy after login

所以想在 cli 下不再加载 xdebug

环境:

  • linux 为 archlinux

  • php 通过 pacman 安装, 版本 7.0.1

  • web服务通过 php-fpm 运行

配置文件分布:

<code>/etc/php
├── conf.d
│   └── xdebug.ini
├── fpm.d
├── pear.conf
├── php-fpm.conf
├── php-fpm.d
│   └── www.conf
├── php.ini
└── php.ini.pacnew
</code>
Copy after login
Copy after login

对比 ubuntu 下 通过 apt 安装的 php 配置文件分布:

<code>/etc/php5/
├── cli
│   ├── conf.d
│   └── php.ini
├── fpm
│   ├── conf.d
│   │   ├── 20-xdebug.ini -> ../../mods-available/xdebug.ini
│   ├── php-fpm.conf
│   ├── php.ini
│   └── pool.d
│       └── www.conf
└── mods-available
    └── xdebug.ini
</code>
Copy after login
Copy after login

---update ---

  • https://launchpadlibrarian.net/92790964/buildlog_ubuntu-hardy-amd64.php5_5.2.4-2ubuntu5.23_BUILDING.txt.gz

  • https://projects.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/php

不自行编译安装,重新指定各项config参数的情况下, 也只好手动指定 php.ini 运行了

使用两个不同的 php.ini 配置文件配置不同的运行参数(包括扩展参数),在开启 cli 或者 fpm 时,通过 -c 参数指定运行所使用的 php.ini 即可。

PHP和PHP-FPM都可以用参数-c指定php.ini配置文件.

执行下列命令可见:

<code>strace -f -o strace.log \
/png/php/5.4.45/bin/php -v && \
cat strace.log|egrep 'open|read'|grep 'ini'
3080  open("/png/php/5.4.45/bin/php-cli.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3080  open("/png/php/5.4.45/lib/php-cli.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3080  open("/png/php/5.4.45/bin/php.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3080  open("/png/php/5.4.45/lib/php.ini", O_RDONLY) = 3
</code>
Copy after login

PHP会优先读取php程序所在目录下的php-cli.ini,访问到则不再读取其他ini文件.
PHP-FPM情况如下:

<code>strace -f -o strace.log \
/png/php/5.4.45/sbin/php-fpm -v && \
cat strace.log|egrep 'open|read'|grep 'ini'
3537  open("/png/php/5.4.45/lib/php-fpm-fcgi.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3537  open("/png/php/5.4.45/lib/php.ini", O_RDONLY) = 3
</code>
Copy after login

PHP-CGI情况如下:

<code>strace -f -o strace.log \
/png/php/5.4.45/bin/php-cgi -v && \
cat strace.log|egrep 'open|read'|grep 'ini'
3568  open("./php-cgi-fcgi.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3568  open("/png/php/5.4.45/bin/php-cgi-fcgi.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3568  open("/png/php/5.4.45/lib/php-cgi-fcgi.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3568  open("./php.ini", O_RDONLY)       = -1 ENOENT (No such file or directory)
3568  open("/png/php/5.4.45/bin/php.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
3568  open("/png/php/5.4.45/lib/php.ini", O_RDONLY) = 3
</code>
Copy after login

可以把cli目录下的conf.d 的20-xdebug.ini 设置为禁用应该就可以了

Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain the match expression (PHP 8 ) and how it differs from switch. Explain the match expression (PHP 8 ) and how it differs from switch. Apr 06, 2025 am 12:03 AM

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.

What is Cross-Site Request Forgery (CSRF) and how do you implement CSRF protection in PHP? What is Cross-Site Request Forgery (CSRF) and how do you implement CSRF protection in PHP? Apr 07, 2025 am 12:02 AM

In PHP, you can effectively prevent CSRF attacks by using unpredictable tokens. Specific methods include: 1. Generate and embed CSRF tokens in the form; 2. Verify the validity of the token when processing the request.

Describe the purpose and usage of the ... (splat) operator in PHP function arguments and array unpacking. Describe the purpose and usage of the ... (splat) operator in PHP function arguments and array unpacking. Apr 06, 2025 am 12:07 AM

The... (splat) operator in PHP is used to unpack function parameters and arrays, improving code simplicity and efficiency. 1) Function parameter unpacking: Pass the array element as a parameter to the function. 2) Array unpacking: Unpack an array into another array or as a function parameter.

How can you prevent a class from being extended or a method from being overridden in PHP? (final keyword) How can you prevent a class from being extended or a method from being overridden in PHP? (final keyword) Apr 08, 2025 am 12:03 AM

In PHP, the final keyword is used to prevent classes from being inherited and methods being overwritten. 1) When marking the class as final, the class cannot be inherited. 2) When marking the method as final, the method cannot be rewritten by the subclass. Using final keywords ensures the stability and security of your code.

C language conditional compilation: a detailed guide for beginners to practical applications C language conditional compilation: a detailed guide for beginners to practical applications Apr 04, 2025 am 10:48 AM

C language conditional compilation is a mechanism for selectively compiling code blocks based on compile-time conditions. The introductory methods include: using #if and #else directives to select code blocks based on conditions. Commonly used conditional expressions include STDC, _WIN32 and linux. Practical case: Print different messages according to the operating system. Use different data types according to the number of digits of the system. Different header files are supported according to the compiler. Conditional compilation enhances the portability and flexibility of the code, making it adaptable to compiler, operating system, and CPU architecture changes.

libv are two libv are two Apr 03, 2025 pm 08:03 PM

I developed a project called Lua-Libuv and am happy to share my experience. The original intention of the project is to explore how to use Libuv (an asynchronous I/O library written in C) to build a simple HTTP server without having to learn the C language in depth. With the help of ChatGPT, I completed the basic code of HTTP.C. When dealing with persistent connections, I successfully implemented closing the connection and freeing resources at the right time. At first I tried to create a simple server that ended the main program by closing the connection, but I had some problems. I've tried sending blocks of data using streaming, and while it works, this blocks the main thread. In the end, I decided to give up on this approach because my goal was not to learn C language in depth. Finally, I

Explain strict types (declare(strict_types=1);) in PHP. Explain strict types (declare(strict_types=1);) in PHP. Apr 07, 2025 am 12:05 AM

Strict types in PHP are enabled by adding declare(strict_types=1); at the top of the file. 1) It forces type checking of function parameters and return values ​​to prevent implicit type conversion. 2) Using strict types can improve the reliability and predictability of the code, reduce bugs, and improve maintainability and readability.

See all articles