Skip to content

Instantly share code, notes, and snippets.

View javareact's full-sized avatar
🌴
On vacation

javareact

🌴
On vacation
View GitHub Profile
@javareact
javareact / pcntl_DEMO1.php
Created November 22, 2018 13:30
PHP 多进程DEMO
<?php
declare( ticks=1 );
pcntl_signal( SIGCHLD, "sig_handler" );
function sig_handler( $signo ) {
switch ( $signo ) {
case SIGCHLD:
$status = 0;
$child_id = pcntl_wait( $status );
echo sprintf( "child exit id: {$child_id} \n" );