• php安装threads多线程扩展


    php5.3或以上,且为线程安全版本。apache和php使用的编译器必须一致。
    通过phpinfo()查看Thread Safety为enabled则为线程安全版。
    通过phpinfo()查看Compiler项可以知道使用的编译器。本人的为:MSVC9 (Visual C++ 2008)。

    一、下载pthreads扩展
    下载地址:http://windows.php.net/downloads/pecl/releases/pthreads

    二、安装pthreads扩展
    复制php_pthreads.dll 到目录 binphpext 下面。
    复制pthreadVC2.dll 到目录 binphp 下面。
    复制pthreadVC2.dll 到目录 C:windowssystem32 下面。
    打开php配置文件php.ini。在后面加上extension=php_pthreads.dll
    提示!Windows系统需要将 pthreadVC2.dll 所在路径加入到 PATH 环境变量中。我的电脑--->鼠标右键--->属性--->高级--->环境变量--->系统变量--->找到名称为Path的--->编辑--->在变量值最后面加上pthreadVC2.dll的完整路径(本人的为C:WINDOWSsystem32pthreadVC2.dll)。

    三、添加thread类

    <?php
    class Thread
    {

    var $hooks = array();
    var $args = array();

    function thread()
    {

    }

    function addthread($func)
    {
    $args = array_slice(func_get_args(), 1);
    $this->hooks[] = $func;
    $this->args[] = $args;
    return true;
    }

    function runthread()
    {
    if(isset($_GET['flag']))
    {
    $flag = intval($_GET['flag']);
    }
    if($flag || $flag === 0)
    {
    call_user_func_array($this->hooks[$flag], $this->args[$flag]);
    }
    else
    {
    for($i = 0, $size = count($this->hooks); $i < $size; $i++)
    {
    $fp=fsockopen($_SERVER['HTTP_HOST'],$_SERVER['SERVER_PORT']);
    if($fp)
    {
    $out = "GET {$_SERVER['PHP_SELF']}?flag=$i HTTP/1.1rn";
    $out .= "Host: {$_SERVER['HTTP_HOST']}rn";
    $out .= "Connection: Closernrn";
    fputs($fp,$out);
    fclose($fp);
    }
    }
    }
    }
    }


    四、测试pthreads扩展

    include('thread.php');
    class AsyncOperation extends Thread {
    public function __construct($arg){
    $this->arg = $arg;
    }

    public function run(){
    if($this->arg){
    printf("Hello %s ", $this->arg);
    }
    }
    }
    $thread = new AsyncOperation("World");
    if($thread->start())
    $thread->join();
  • 相关阅读:
    c#-全局键盘钩子
    C#-自动获取IP
    C#-自动获取IP
    C#-获取CPUID
    C#-获取CPUID
    手动添加导入表修改EXE功能
    安装全局消息钩子实现dll窗体程序注入
    手动添加导入表修改EXE功能
    虚拟桌面模拟查找点击自绘控件
    虚拟桌面模拟查找点击自绘控件
  • 原文地址:https://www.cnblogs.com/php-rearch/p/5034413.html
Copyright © 2020-2023  润新知