search
HomeBackend DevelopmentPHP TutorialHow to use pcntl and libevent in PHP to implement Timer function

The Timer function is implemented in PHP, and PHP multi-threading is used in the middle. This article gives an explanation of pcntl.

PHP uses pcntl and libevent to implement the Timer function. Let’s look at the example first. pcntl (PHP thread) is explained below.

<?php  
function newChild($func_name) {  
    echo "enter newChild\n";  
    $args = func_get_args();  
    unset($args[0]);  
    $pid =  pcntl_fork();  
    if ($pid == 0) {  
        function_exists($func_name) and exit(call_user_func_array($func_name, $args)) or exit(-1);  
    } else if($pid == -1) {  
        echo "Couldn&#39;t create child process";  
    } else {  
        return $pid;  
    }  
}  
(PS:^_^不错的php开发交流群:256271784,验证:csl,有兴趣的话可以加入进来一起讨论)
function on_timer() {  
    echo "timer called\n";  
}  
   
/** 
 * @param $func string, function name 
 * @param $timeouts int, microtimes for time delay 
 */ 
function timer($func, $timeouts){  
   
    echo "enter timer\n";  
    $base = event_base_new();  
    $event = event_new();  
   
    event_set($event, 0, EV_TIMEOUT, $func);  
    event_base_set($event, $base);  
    event_add($event, $timeouts);  
   
    event_base_loop($base);  
}  
   
$pid = newChild("timer", "on_timer", 5000000);  
   
if ($pid > 0) {  
    echo "master process exit\n";  
}

PHP extends pcntl to implement "multi-threading" (process)
pcntl and ticks
ticks are defined through declare(ticks = n) {statement} syntax. The declare syntax can currently only accept ticks. He defines The meaning of ticks = n is that an event occurs when N low-level statements are executed in the statement block specified by declare. This event can be registered through register_tick_function($function_name).
The signal mechanism of pcntl is implemented based on the ticks mechanism . Therefore, when we use signal-related functions in the pcntl family of functions, we need to add the declare(ticks = n) syntax structure in front.
int pcntl_alarm(int $seconds):
$seconds seconds to send a SIGALRM signal, each call to the pcntl_alarm method will cancel the previously set clock.
void pcntl_exec(string $path[, array $args[, array $env]]):
Execute a program in the current process space.
$path: Must be a binary executable file, or a script file path with valid script header information (#!/usr/local/bin/php).
$args: String arguments to be passed to the program List (array form)
$envs: environment variables. Pass to the environment variables of the program to be executed in the form of array (key => value form).
int pcntl_for k (void):
Create a child Process, the child process is different from the parent process only in PID (process number) and PPID (parent process number).
Returns the created child process pid when the parent thread is executed, returns 0 when the child thread is executed, and creates a child process When it fails, -1 will be returned in the context of the parent process and a php error will be triggered.
To understand the fork here, you need to know: pcntl_fork creates a branch node, which is equivalent to a mark. After the parent process is completed, the child process will start from the mark. Continue execution, that is to say, the code after pcntl_fork is executed twice by the parent process and the child process respectively, and the return values ​​obtained by the two processes during execution are different. Therefore, the parent and child processes can be separated to execute different codes.
int pcntl_getpriority([int $pid = getmypid()[, int $process_identifier = PRIO_PROCESS]]):
Get the priority of the process corresponding to the given $pid. The default value is obtained through getmypid(). It is the current process.
$pid: If not specified, the default is the current process.
$process_identifier: One of PRIO_PGRP, PRIO_USER, PRIO_PROCESS, the default is PRIO_PROCESS. Among them, PRIO_PGRP refers to the priority of obtaining the process group, and PRIO_USER refers to Get the priority of the user process. PRIO_PROCESS refers to getting the priority of a specific process.
Return the priority of the process, or return false when an error occurs. The smaller the value, the higher the priority.
bool pcntl_setpriority(int $priority[, int $pid = getmypid()[, int $process_identifier = PRIO_PROCESS]]:
Set the priority of the process.
$priority: priority value, in the range of -20 to 20, the default priority is 0. Value The smaller the value, the higher the priority.
$pid: If not specified, refers to the current process
$process_identifier: The meaning is the same as pcntl_getpriority's $process_identifier.
Returns TRUE if set successfully, and FALSE if failed.
bool pcntl_signal_dispatch( void):
Call the handler of the upcoming signal installed through pcntl_signal().
Return TRUE if the call is successful, false if it fails.
php 5.3.3 Add
bool pcntl_signal(int $signo , callback $handler[, bool $restart_syscalls = true]):
Install a new signal handler $handler for the specified signal $signo.
The last parameter does not understand the meaning.
bool pcntl_sigprocmask(int $how, array $set[, array &$oldset]):
Add, delete or set the lock signal, the specific behavior depends on the $how parameter
$how: SIG_BLOCK is used to add the signal to the current lock signal Among them, SIG_UNBLOCK is used to remove the signal from the current lock signal, and SIG_SETMASK is used to replace the current lock signal with the given signal list.
$set: The signal list to be added, removed or set.
$ oldset: used to return the old lock signal to the caller.
Returns TRUE on success, FALSE on failure.
int pcntl_sigtimedwait(array $set[, array &$siginfo[, int $seconds = 0[, int $ nanoseconds = 0]]]):
pcntl_sigtimedwait actually does the same thing as pcntl_sigwaitinfo(), but pcntl_sigtimedwait has two more enhanced parameters $seconds and $nanoseconds, which allows the script to have a dwell time of Upper limit instead of unlimited waiting.
$set: List of signals that need to be waited for
$siginfo: Used to return information to the caller about the signal to be waited for. For information content, see pcntl_sigwaitinfo
$seconds: Seconds for timeout Number
$nanoseconds: The number of nanoseconds for timeout
After success, pcntl_sigtimedwiat() returns the signal number
int pcntl_sigwaitinfo(array $set[, array &$siginfo]):
Suspend the current script Executed until a signal in $set is received. If one of the signals is about to arrive (for example, locked by pcntl_sigprocmask), then pcntl_sigwaitinfo will return immediately
$set: waiting signal list
$siginfo: used Returns to the caller the information of the signal waiting for the signal, which includes the following content:
1. All signals have the following three pieces of information:
a) signo: signal number
b) errno: error number
c) code: signal code
2. SIGCHLD signal-specific information
a) status: exit value or signal
b) utime: user consumption time
c) stime: system consumption time
d) pid: sending process id
e) uid: real user id of sending process
3. Information owned by SIGILL, SIGFPE, SIGSEGV, SIGBUS
a) addr: memory location where the fault occurred
4. SIGPOLL unique information:
a) band: band event, meaning unknown
b) fd: file descriptor
The function returns the signal number after successful operation
int pcntl_wait(int &$status[ , int *options = 0]):
Hang the current process until a child process exits or until a signal requires the current process to be terminated or a signal handling function is called. If the child process has exited when called (commonly known as a zombie process ), this function will return immediately, and all system resources will be released.
$status is used to save the status information of the child process. The status information is generated by the following functions: pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig .
$options: If your system allows wait3 (most BSD-like systems), you can provide an optional options parameter. If this parameter is not provided, wait will use the system call. If the system does not allow wait3 , providing this parameter will have no effect, the value of $options can be 0 or the two constants WNOHANG and WUNTRACED.
The function returns the PID of the exiting child process, or -1 on error, or if WNOHANG is provided as option(wait3 unavailable system) and there is no valid child process returns 0
Zombie process: Since the parent process is after fork, it is impossible to predict when the child process will end, so in order to leave some information to the parent process, the child process will leave The next data structure called a zombie waits for a wait operation initiated by the parent process to collect its corpse. The child process is called a zombie process during the period between the end of the child process (logical end) and the collection of its corpse by the parent process. After the end, all child processes will be handed over to Init. Therefore, if the parent process ends, the zombie processes will be recycled. However, if the parent process never ends, these zombie processes will always occupy the process number. If the system process number is exhausted, If it is exhausted, it will result in the inability to start a new process. Therefore, the safe way is to collect the corpses of the child processes generated by itself in the parent process.
int pcntl_waitpid(int $pid, int &$status[, int $options = 0 ]):
Suspend the current process until the child process with the given $pid exits, or the current process receives an exit signal, or receives an ige signal to call a signal handler.
If $pid is given The corresponding child process has exited (zombie state) when this function is called. The function returns immediately and all system resources are released.
$pid: process number, less than -1 indicates that it is waiting for any child process in the process group , the process group number is the absolute value of $pid. Equal to -1 means waiting for any Forbidden City, consistent with the behavior of the pcntl_wait function. Equal to 0 means waiting for a child process in the same group as the calling process, and greater than 0 means it is a specific process.
$status: used to return the child process status from the function. This status information is generated by the following functions: pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig.
$options: has the same meaning as the $options of pcntl_wait
int pcntl_wexitstatus (int $status):
Returns an interrupted child process return code. This function is only useful when the pcntl_wifexited function returns TRUE.
The $status parameter is the status information generated by pcntl_waitpid.
bool pcntl_wifexited(int $status):
Check whether the given status indicates that the child process exited normally.
bool pcntl_wifsignaled(int $status):
Check whether the given status indicates that the child process exited due to receiving a certain signal .
bool pcntl_wifstopped(int $status):
Check whether $status can indicate that the child process is currently stopped. This function only generates $status when acting on WUNTRACED used by the pcntl_waitpid function as the value of the $options parameter. Only valid.
int pcntl_wstopsig(int $status):
Returns the number of the signal that stops the child process by analyzing $status. This function is only valid when pcntl_wifsignaled returns TRUE.
int pcntl_wtermsig(int $status):
Returns the signal number that interrupts the process. This function is only valid when pcntl_wifsignaled returns TRUE.

The above is the entire content of this article, I hope it will be helpful to everyone's learning, more Please pay attention to the PHP Chinese website for related content!

Related recommendations:

Analysis of the differences between ceil, floor, round and intval of PHP rounding functions

How to use curl in PHP to simulate post uploading and receiving files

##

The above is the detailed content of How to use pcntl and libevent in PHP to implement Timer function. For more information, please follow other related articles on the PHP Chinese website!

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
如何查看php用了哪些扩展如何查看php用了哪些扩展Aug 01, 2023 pm 04:13 PM

查看phpinfo()函数输出、使用命令行工具和检查PHP配置文件均可以查看php用了哪些扩展。1、查看phpinfo()函数输出,创建一个简单的PHP脚本,将这个脚本保存为phpinfo.php,并将其上传到您的Web服务器,在浏览器中访问此文件,使用浏览器的搜索功能,在页面中查找关键字"extension"或"extension_loaded",以找到有关扩展的信息即可。

如何使用PHP扩展SuiteCRM的报告生成功能如何使用PHP扩展SuiteCRM的报告生成功能Jul 19, 2023 am 10:27 AM

如何使用PHP扩展SuiteCRM的报告生成功能SuiteCRM是一款功能强大的开源CRM系统,它提供了丰富的功能来帮助企业管理客户关系。其中一个重要的功能就是报告生成,使用报告可以帮助企业更好地了解业务情况,并作出正确的决策。本文将介绍如何使用PHP扩展SuiteCRM的报告生成功能,并提供相关的代码示例。在开始之前,需要确保已经安装好了SuiteCRM,

如何使用php扩展PDO连接Oracle数据库如何使用php扩展PDO连接Oracle数据库Jul 29, 2023 pm 07:21 PM

如何使用PHP扩展PDO连接Oracle数据库导语:PHP是一种非常流行的服务器端编程语言,而Oracle是一款常用的关系型数据库管理系统。本文将介绍如何使用PHP扩展PDO(PHPDataObjects)来连接Oracle数据库。一、安装PDO_OCI扩展要连接Oracle数据库,首先需要安装PDO_OCI扩展。以下是安装PDO_OCI扩展的步骤:确保

PHP入门指南:PHP扩展安装PHP入门指南:PHP扩展安装May 20, 2023 am 08:49 AM

在使用PHP进行开发时,我们可能需要使用一些PHP扩展。这些扩展可以为我们提供更多的功能和工具,使我们的开发工作更加高效和便捷。但在使用这些扩展之前,我们需要先进行安装。本篇文章将为您介绍PHP扩展的安装方法。一、什么是PHP扩展?PHP扩展是指为PHP编程语言提供额外功能和服务的组件。这些组件可以通过PHP的扩展机制进行安装和使用。PHP扩展可以帮助我们处

php如何使用PHP的geoip扩展?php如何使用PHP的geoip扩展?Jun 01, 2023 am 09:13 AM

PHP是一种流行的服务器端脚本语言,它可以处理网页上的动态内容。PHP的geoip扩展可以让你在PHP中获取有关用户位置的信息。在本文中,我们将介绍如何使用PHP的geoip扩展。什么是PHP的GeoIP扩展?PHP的geoip扩展是一个免费的、开源的扩展,它允许你获取有关IP地址和位置信息的数据。该扩展可以与GeoIP数据库一起使用,这是一个由MaxMin

宝塔面板的PHP扩展和PHP版本管理宝塔面板的PHP扩展和PHP版本管理Jun 21, 2023 am 08:49 AM

宝塔面板是一款开源的服务器管理面板,在为网站运营者提供便捷的网站管理、数据库管理、SSL证书管理等服务的同时,还提供了强大的PHP扩展和PHP版本管理功能,让服务器管理变得更加简单和高效。一、PHP扩展PHP扩展是一种用来增强PHP功能的模块,通过安装PHP扩展可以实现更多的功能和服务,比如:加速器:加速器可以显著地提高PHP性能,通过缓存PHP脚本,减轻服

PHP PCNTL中fork失败的常见错误及解决方案PHP PCNTL中fork失败的常见错误及解决方案Feb 28, 2024 am 11:06 AM

PHPPCNTL中fork失败的常见错误及解决方案在使用PHPPCNTL扩展进行进程管理时,经常会遇到fork失败的问题。fork是创建子进程的一种方法,在一些情况下可能会因为一些错误导致fork操作失败。本文将介绍一些常见的fork失败的错误以及相应的解决方案,并提供具体的代码示例来帮助读者更好地理解和处理这些问题。1.内存不足可能的错误信息:Can

教程:使用极光推送及其PHP扩展在应用中添加消息推送功能教程:使用极光推送及其PHP扩展在应用中添加消息推送功能Jul 26, 2023 am 08:07 AM

教程:使用极光推送及其PHP扩展在应用中添加消息推送功能引言:在如今的移动应用开发中,消息推送功能已经成为了各类应用必不可少的一部分。而极光推送则是这方面最常用、最受开发者欢迎的解决方案之一。本教程将介绍如何使用极光推送及其PHP扩展来在应用中添加消息推送功能,并提供相应的代码示例供参考。一、极光推送简介极光推送是一款基于云服务的、跨平台的消息推送解决方案。

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

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool