php pthread 多线程

php pthread多线程应用demo:
class TestThread extends Thread{
public $text;
public function run(){
$this->text = file_get_contents("http://www.buyigang.com");

}
}

$threads = array();

$time = microtime(true);

for($i=0;$i<20;$i++){
$threads[$i] = new TestThread;
$threads[$i]->start();
}

for($i=0;$i<20;$i++){
if($threads[$i]->join()){
file_put_contents(‘a.txt‘,$i,FILE_APPEND);
}
}

echo microtime(true)-$time.‘
==========================================
‘;

$time = microtime(true);
for($i=0;$i<20;$i++){
$text = file_get_contents("http://www.buyigang.com");
file_put_contents(‘b.txt‘,$i,FILE_APPEND);
}
echo microtime(true)-$time.‘

时间: 2024-10-10 07:36:23

php pthread 多线程的相关文章

linux pthread多线程编程模板

pthread_create() 创建线程,pthread_join()让线程一直运行下去. 链接时要加上-lpthread选项. pthread_create中, 第三个参数为线程函数,定义如下: void * heartbeat_thread() { ... } 下面是main.c : #include <pthread.h> pthread_t thread[MAX_THREAD_NUM]; pthread_mutex_t cache_mutex; pthread_mutex_t var

pthread多线程编程的学习小结

pthread多线程编程的学习小结 程序员必上的开发者服务平台 —— DevStore pthread多线程编程整理 1 Introduction 不用介绍了吧… 2 Thread Concepts 1.     Thread由下面部分组成: a.     Thread ID b.     Stack c.     Policy d.     Signal mask e.     Errno f.      Thread-Specific Data 3 Thread Identification

C语言使用pthread多线程编程(windows系统)二

我们进行多线程编程,可以有多种选择,可以使用WindowsAPI,如果你在使用GTK,也可以使用GTK实现了的线程库,如果你想让你的程序有更多的移植性你最好是选择POSIX中的Pthread函数库,我的程序是在Linux下写的,所以我使用了Pthread库(是不是很伤心,我知道有不少人期待的是WindowsAPI的,好吧,有机会以后再讲那个,现在先把这一系列专题写完 ^_^)如果你用的是LINUX/UNIX/MacOSX,那么我们已经可以开始了,如果你用的是WINDOWS,那么你需要从网站上下载

VC++6.0 下配置 pthread库2010年12月12日 星期日 13:14VC下的pthread多线程编程 转载

VC++6.0 下配置 pthread库2010年12月12日 星期日 13:14VC下的pthread多线程编程     转载 #include <stdio.h>#include <stdlib.h>#include <pthread.h> void* tprocess1(void* args){       int i=1;       while(i<=10){            printf("process1:%d\n",i);

PHP Pthread多线程 操作

<?php class vote extends Thread { public $res = ''; public $url = array(); public $name = ''; public $runing = false; public $lc = false; public function __construct($name) { $this->res = '暂无,第一次运行.'; $this->param = 0; $this->lurl = 0; $this-&

php Pthread 多线程 (一) 基本介绍

我们可以通过安装Pthread扩展来让PHP支持多线程. 线程,有时称为轻量级进程,是程序执行的最小单元.线程是进程中的一个实体,是被系统独立调度和分派的基本单位,线程自己不拥有系统资源,它与同属一个进程的其它线程共享进程所拥有的全部资源.一个线程可以创建和撤消另一个线程,同一进程中的多个线程之间可以并发执行.每一个程序都至少有一个线程,那就是程序本身,通常称为主线程.线程是程序中一个单一的顺序控制流程. 在单个程序中同时运行多个线程完成不同的工作,称为多线程. <?php //实现多线程必须继

C - pthread多线程最简单示例

#include <pthread.h> #include <stdio.h> /* this function is run by the first thread */ void *inc_x(void *x_void_ptr) {     printf("线程XXXXXXXXXXXXXXXXXXXXXXX开始\n");     /* increment x to 100 */     int *x_ptr = (int *)x_void_ptr;     

C语言使用pthread多线程编程(windows系统)一

运行之前需要做一些配置: 1.下载PTHREAD的WINDOWS开发包 pthreads-w32-2-4-0-release.exe(任何一个版本均可)    http://sourceware.org/pthreads-win32/ ,解压到一个目录. 2.找到include和lib文件夹,下面分别把它们添加到VC++6.0的头文件路径和静态链接库路径下面:    a).Tools->Options,选择Directory页面,然后在Show directories for:中选择Includ

PHP pthread多线程

class test extends Thread { public $arg; public function __construct($arg){ $this->arg = $arg; } public function run(){ if($this->arg){ sleep(1); echo "Hello " . $this->arg .':'. date("Y-m-d H:i:s") . "<br>"; s