PHP code example of zhgzhg / gphpthread

1. Go to this page and download the library: Download zhgzhg/gphpthread library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

zhgzhg / gphpthread example snippets



s SingingThread extends GPhpThread {

	public function run() {
		$j = 99;
		for ($i = $j; $i > 0; ) {
			echo $this->getPid() . " sings:\n";
			echo "{$i} bottles of beer on the wall, {$i} bottles of beer.\n";
			--$i;
			echo "Take one down and pass it around, {$i} bottles of beer on the wall.\n\n";
		}

		echo "No more bottles of beer on the wall, no more bottles of beer.\n";
		echo "Go to the store and buy some more, {$j} bottles of beer on the wall.\n\n";
	}
}

echo "PID " . getmypid() . " is the director! Let's sing!\n\n";
sleep(3);

$sharedCriticalSection = null;
$allowThreadExitCodes = false;

$st = new SingingThread($sharedCriticalSection, $allowThreadExitCodes);
$st->start(); // start the GPhpThread
$st->join();  // wait for the generic thread to finish

echo "Director " . getmypid() . " is done!\n";