|
Threaded::getTerminationInfoError Detection Warning
This method has been removed in pthreads v3. Description
public array Threaded::getTerminationInfo
( void
)
Retrieves terminal error information from the referenced object ParametersThis function has no parameters. Return Valuesarray containing the termination conditions of the referenced object Examples
Example #1 Detecting fatal errors in Threads
<?phpThe above example will output:
bool(true)
array(4) {
["scope"]=>
string(2) "My"
["function"]=>
string(3) "run"
["file"]=>
string(29) "/usr/src/pthreads/sandbox.php"
["line"]=>
int(4)
}
|