Answer the question
In order to leave comments, you need to log in
How to create a global variable that works between the same classes?
<?php
$arraw=array("Start");
class AsyncOperation extends Thread {
public function __construct($arg) {
$this->arg = $arg;
}
public function run() {
global $arraw;
if ($this->arg) {
$sleep = mt_rand(1, 10);
printf('%s: %s -start -sleeps %d' . "\n", date("g:i:sa"), $this->arg, $sleep);
sleep($sleep);
$arraw[]=$this->arg;
printf('%s: %s -finish' . "\n", date("g:i:sa"), $this->arg);
}
}
}
// Create a array
$stack = array();
//Initiate Multiple Thread
foreach ( range("A", "D") as $i ) {
$stack[] = new AsyncOperation($i);
}
// Start The Threads
foreach ( $stack as $t ) {
$t->start();
}
?>
Answer the question
In order to leave comments, you need to log in
I found the answer myself with a subclass and volatility
https://www.sitepoint.com/parallel-programming-pth...
https://www.php.net/manual/en/class.volatile.php
You should read up on inheritance and properties .
As a solution, I propose to create a parent class for such classes and store your $arraw as a property in it.
Or you can somehow "smart" with constructors, and pass this array from class to class via __construct() .
Pass Create $arraw to ClassOne(), then pass ClassTwo(['arraw' => $classOneObject->arraw]) from there to class 3,4,5 and so on.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question