I am using php version 7 and defined a class that extend Thread class but when I run My Program that give me Class 'Thread' not found error.I searched and I found out I must copy pthreadVC2.dll
in apache and system32 folders and copy php_pthreads.dll
in php/ext and system32 folders and add extension=php_pthreads.dll
to php.ini
.I did all these works but I get that error again.php_pthreads.dll
and pthreadVC2.dll
version is 14
<?php
class exampleThread extends Thread
{
var $Mobile;
var $code;
public function __construct($Mobile, $code)
{
$this->Mobile = $Mobile;
$this->code = $code;
}
public function run()
{
}
};
?>