php-pthread

Unable to load dynamic library 'C:\php\ext\php_pthreads.dll'

*爱你&永不变心* 提交于 2021-01-27 07:01:27
问题 I'm trying to have threads in my php code, but I can't get my head around pthreads library and every time I run my program I encounter this error: Warning: PHP Startup: Unable to load dynamic library 'C:\php\ext\php_pthreads.dll' - The specified module could not be found.in Unknown on line 0 I followed every step needed: I've added the file pthreadVC2.dll in my "C:\php" folder I've added the file php_pthreads.dll in my "C:\php\ext"folder I've modified the file php.ini, enabling the extension:

Unable to load dynamic library 'C:\php\ext\php_pthreads.dll'

痞子三分冷 提交于 2021-01-27 07:00:39
问题 I'm trying to have threads in my php code, but I can't get my head around pthreads library and every time I run my program I encounter this error: Warning: PHP Startup: Unable to load dynamic library 'C:\php\ext\php_pthreads.dll' - The specified module could not be found.in Unknown on line 0 I followed every step needed: I've added the file pthreadVC2.dll in my "C:\php" folder I've added the file php_pthreads.dll in my "C:\php\ext"folder I've modified the file php.ini, enabling the extension:

Laravel Commands, Pthreads and Closure

ε祈祈猫儿з 提交于 2019-11-29 17:16:23
There is a need to perform a specific process multiple threads. I learned about the extension for php - pthreads. For example, a simple script outside Laravel works fine and I liked the results. I decided to move in Laravel, and faced with the problem. Of course I searched in google, found some questions on stackoverflow, where replied the author of extension. But me did not help his answers, so I ask you to help me. Answered Question extension author. There is a class App\Commands\QuestionsParserCommand. Inside I created an instance of the class App\My\Questions\QuestionsParser and call the

Laravel Commands, Pthreads and Closure

折月煮酒 提交于 2019-11-28 11:05:08
问题 There is a need to perform a specific process multiple threads. I learned about the extension for php - pthreads. For example, a simple script outside Laravel works fine and I liked the results. I decided to move in Laravel, and faced with the problem. Of course I searched in google, found some questions on stackoverflow, where replied the author of extension. But me did not help his answers, so I ask you to help me. Answered Question extension author. There is a class App\Commands