언어 PHP 자체는 하나의 작업이 완료된 후 다음 작업이 실행될 수 있다는 것을 누구나 알고 있습니다.
그러나 때로는 비동기 작업과 동시에 실행되는 여러 스레드가 필요합니다.
PHP가 다중 스레드 작업을 구현하는 방법을 소개하겠습니다
코드는 다음과 같습니다. 참고용으로
<?php /** * @title: PHP多线程类(Thread) * @version: 1.0 * @author: php.cn < web@php.cn > * @published: 2010-11-2 * * PHP多线程应用示例: * require_once 'thread.class.php'; * $thread = new thread(); * $thread->addthread('action_log','a'); * $thread->addthread('action_log','b'); * $thread->addthread('action_log','c'); * $thread->runthread(); * * function action_log($info) { * $log = 'log/' . microtime() . '.log'; * $txt = $info . "\r\n\r\n" . 'Set in ' . Date('h:i:s', time()) . (double)microtime() . "\r\n"; * $fp = fopen($log, 'w'); * fwrite($fp, $txt); * fclose($fp); * } */ 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.1\r\n"; $out .= "Host: {$_SERVER['HTTP_HOST']}\r\n"; $out .= "Connection: Close\r\n\r\n"; fputs($fp,$out); fclose($fp); } } } } } $thread = new thread(); $thread->addthread('func1','info1'); $thread->addthread('func2','info2'); $thread->addthread('func3','info3'); $thread->runthread(); //说明: //addthread是添加线程函数,第一个参数是函数名,之后的参数(可选)为传递给指定函数的参数。 //runthread是执行线程的函数。
이 문서는 PHP에서 제공됩니다. 중국어 웹사이트, PHP를 사용하여 멀티스레딩 기능을 시뮬레이션하는 방법을 소개합니다.
글 주소: http://www.php.cn/php-weizijiaocheng-377481.html
프로그래밍을 배우려면 PHP 중국어 웹사이트 www.php.cn
위 내용은 단일 스레드 프로그래밍 언어 PHP는 다중 스레드 작업을 어떻게 구현합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!