Threaded::getTerminationInfo

(PECL pthreads >= 2.0.0)
Error Detection
public array Threaded::getTerminationInfo ( void )

Retrieves terminal error information from the referenced object

Returns:

array containing the termination conditions of the referenced object

Examples:
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)
}
doc_php
2016-02-24 16:05:23
Comments
Leave a Comment

Please login to continue.