soneritics / pcntl
PCNTL helper methods
1.1
2017-08-14 20:14 UTC
Requires
- php: >=7.1
Requires (Dev)
- phpunit/phpunit: 3.7.*
- satooshi/php-coveralls: dev-master
- squizlabs/php_codesniffer: dev-master
This package is auto-updated.
Last update: 2024-10-23 18:09:54 UTC
README
by
- @Soneritics - Jordi Jolink
Introduction
Helper method for working with forks.
Minimum Requirements
- PHP 7.1
Features
- tbd
- tbd
Example
The following PHP code is a minimal example of one of the possibilities of this library.
(new \PCNTL\ThreadStart)->startAndWait( (new \PCNTL\ThreadCollection) ->add(new ExampleClass('Test 1')) ->add(new ExampleClass('Test 2')) ->add(new ExampleClass('Test 3')) ->add(new ExampleClass('Test 4')) ->add(new ExampleClass('Test 5')) );
Running multiple threads (forks), output will look like:
Starting
Starting Test 1
Starting Test 2
Starting Test 3
Starting Test 5
Starting Test 4
Ended Test 1
Ended Test 3
Ended Test 5
Ended Test 2
Ended Test 4
Program is done.