php PCEL pthread Thread can't use array object; I test it two days, this question i can't find this cause please help me , thank you !
code example:
class my extends Thread {
public function __construct() {
$this->arr = array();
$this->id = 0;
}
pulbic function run() {
while (true) {
$this->wait();
}
}
public function set() {
$this->id = rand(0, 1000);
$this->arr[] = rand(0, 1000);
var_dump($this->id);//this is rand
var_dump($this->arr);//this is empty array()
$this->notify();
}
}
$my = new my();
$my->start();
while (true) {
sleep(1);
$my->add();
}
add():? – KingCrunch Feb 10 at 10:16