PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Joshy Francis   PHP Background Process   README.md   Download  
File: README.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PHP Background Process
Run script in the background on Linux or Windows
Author: By
Last change: Update README.md
Update README.md
Date: 6 years ago
Size: 730 bytes
 

Contents

Class file image Download

php_background_process

Simple, elegant PHP background process solution for Windows and Linux

I have just combined some solutions from stackoverflow. Thanks to all of them.

Please provide php executable path in windows.

Example, Procedural style.

		$cmd='';
		if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {//'This is a server using Windows!';
			$cmd=  $php_path.'\php.exe '.$path.'\long_process.php' ;	
		}else{
			$cmd='/usr/bin/php -f  /var/www/example.com/public/long_process.php';
		}
                    	$pid=run_process($cmd);
                    if(is_process_running($pid)){
			echo 'Process running';
                   		stop_process($pid);
		}else{
			echo 'Process not running';
		}