Updated Threads use the new commit

This commit is contained in:
Shoghi Cervantes Pueyo
2013-01-23 19:38:42 +01:00
parent 6cd51dbbf6
commit 386decf268
2 changed files with 9 additions and 2 deletions

View File

@@ -181,7 +181,12 @@ class ConsoleAPI{
}
class ConsoleLoop extends Thread{
var $line = false, $stop = false;
public $line, $stop;
public function __construct(){
$this->line = false;
$this->stop = false;
}
public function run(){
$fp = fopen("php://stdin", "r");
while($this->stop === false and ($line = fgets($fp)) !== false){