Table of Contents
What is a signal
C signal processing example
PHP signal processing example
PHP’s signal processing does not directly call C
How PHP handles signals gracefully
Home Backend Development PHP Tutorial Signal handling for PHP programmers

Signal handling for PHP programmers

Feb 04, 2021 am 07:04 AM
pcntl php signal

Signal Processing Tutorial for PHP Programmers

I had braised pork tonight, and the girl at the table asked me, can this thing be eaten? Me: You can eat it if you think you can. . . Topics unrelated to the content

What is a signal

A signal is a notification mechanism for the process (also called a software interrupt) when an event occurs. When a process receives a signal, the kernel will pause the code being executed by the process and jump to the corresponding signal processing function. If the processing function does not interrupt, after the processing function is executed, execution will continue where it was interrupted. implement.

When we write code in FPM mode, we will not encounter problems related to signal processing, but how can some memory-resident scripts in CLI mode be able to freely restart, shut down, and do some cleanup work before exiting ( break links, delete temporary files, etc.)?

C signal processing example

Signal handling for PHP programmers

In the above picture, I registered a processing function for the signal SIGINT sigint_handle, after capturing the signal, output the content and exit, it is simple and easy to understand. Execute gcc -o run run.c && ./run, then CTRL C (the SIGINT signal will be triggered), successful output: Signal captured successfully 2!, the program ends directly.

PHP signal processing example

Signal handling for PHP programmers

pcntl_signal is PHP’s signal processing registration method, implemented above The function is basically the same as that implemented in C. The difference is that the current process will not exit, and an additional signinfo is output (PHP is written in C, why is there no signal-related information in the C language just now? Because PHP uses another signal function sigaction, those who are interested can learn more)

PHP’s signal processing does not directly call C

Signal handling for PHP programmers

This is when pcntl is initialized, register pcntl_signal_dispatch as the tick processing function

Signal handling for PHP programmers

pcntl_signal will register the processing function Put it into the signal collection (PHP's hash table), and php_signale4 will eventually call sigaction for underlying signal management.

Signal handling for PHP programmers

I have omitted a lot of code here and marked the key points. In fact, PHP maintains its own signal collection. Whenever pcntl_signal_dispatch is called It will query whether there is a signal. The above SIG_BLOCK will block the signal, so that only after we execute the key code, we can trigger the signal processing function to ensure the integrity of the data and program logic.

How PHP handles signals gracefully

I often see programmers around me. Whenever they need to restart the PHP-FPM process, the trick they use is to kill it. All PHP processes are then newly started. In general, there is no problem, but sometimes the task of a certain process may not be completed, and it would be a bit rude to interrupt it directly. In fact, as long as you send a USR2 signal to the PHP Master process, it will restart the child process after processing all tasks. This is the so-called elegance~

Signal handling for PHP programmers

The picture above is an example I simply wrote. If we want the process to exit gracefully, we only need to send the SIGTERM signal. It should be noted that the SIGKILL and SIGSTOP signals will skip the signal blocking and stop the process directly, and the signal will interrupt sleep (SLEEP), sleepIf If the execution is not completed, the remaining seconds will be returned. If you are interested, you can try it.

There are actually many knowledge points related to signals, and we need to continue to study them in depth~ The PHP source code above is version 7.1.25, and each version may be different.

The above is the detailed content of Signal handling for PHP programmers. For more information, please follow other related articles on the PHP Chinese website!

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles