我在 PHP 的不同线程之间共享静态变量时遇到问题。简而言之,我想 1. 在一个线程中编写一个静态变量 2. 在另一个线程中读取它并执行所需的过程并清理它。为了测试上述要求,我在 PHP 脚本下面编写了。
<?php
class ThreadDemo1 extends Thread
{
private $mode; //to run 2 threads in different modes
private static $test; //Static variable shared between threads
//Instance is created with different mode
function __construct($mode) {
$this->mode = $mode;
}
//Set the static variable using mode 'w'
function w_mode() {
echo 'entered mode w_mode() funcion';
echo "<br />";
//Set shared variable to 0 from initial 100
self::$test = 100;
echo "Value of static variable : ".self::$test;
echo "<br />";
echo "<br />";
//sleep for a while
sleep(1);
}
//Read the staic vaiable set in mode 'W'
function r_mode() {
echo 'entered mode r_mode() function';
echo "<br />";
//printing the staic variable set in W mode
echo "Value of static variable : ".self::$test;
echo "<br />";
echo "<br />";
//Sleep for a while
sleep(2);
}
//Start the thread in different modes
public function run() {
//Print the mode for reference
echo "Mode in run() method: ".$this->mode;
echo "<br />";
switch ($this->mode)
{
case 'W':
$this->w_mode();
break;
case 'R':
$this->r_mode();
break;
default:
echo "Invalid option";
}
}
}
$trd1 = new ThreadDemo1('W');
$trd2 = new ThreadDemo1('R');
$trd3 = new ThreadDemo1('R');
$trd1->start();
$trd2->start();
$trd3->start();
?>
预期输出是,运行()方法中的模式:W 进入模式 w_mode()函数静态变量的值:100
run() 方法中的模式:R 进入模式 r_mode() 函数静态变量的值:100
run() 方法中的模式:R 进入模式 r_mode() 函数静态变量的值:100
但实际上我得到的输出是 run() 方法中的模式:W 进入模式 w_mode() 函数静态变量的值:100
run() 方法中的模式:R 进入模式 r_mode() 函数静态变量的值:
run() 方法中的模式:R 进入模式 r_mode() 函数静态变量的值:
....真的不知道原因。请帮忙。