GoLang Threaded::getTerminationInfo

request it (218)
GoLang replacement for PHP's Threaded::getTerminationInfo [edit | history]



Do you know a GoLang replacement for PHP's Threaded::getTerminationInfo? Write it!

PHP Threaded::getTerminationInfo

PHP original manual for Threaded::getTerminationInfo [ show | php.net ]

Threaded::getTerminationInfo

(PECL pthreads < 3.0.0)

Threaded::getTerminationInfoError Detection

Warning

This method has been removed in pthreads v3. Instead, the body of Threaded::run() can be wrapped in a try...catch block to detect errors (since most errors in PHP 7 have been converted to exceptions).

Description

public array Threaded::getTerminationInfo ( void )

Retrieves terminal error information from the referenced object

Parameters

This function has no parameters.

Return Values

array containing the termination conditions of the referenced object

Examples

Example #1 Detecting fatal errors in Threads

<?php
class My extends Thread {
    public function 
run() {
        @
not_found();
    }
}

$my = new My();
$my->start();
$my->join();

var_dump($my->isTerminated(), $my->getTerminationInfo());
?>

The 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)
}