Nous vous avons déjà présenté la méthode d'implémentation du multi-threading PHP et des appels asynchrones. Nous savons tous que le multi-threading implémenté via le serveur WEB ne peut qu'imiter certains effets du multi-threading, et n'est pas du multi-threading. dans le vrai sens du terme, mais peu importe, cela peut encore répondre à certains de nos besoins, nous allons donc aujourd'hui implémenter la classe multithread PHP !
Classe multi-threading php :
/** * @title: PHP多线程类(Thread) * @version: 1.0 * * 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 . "rnrn" . 'Set in ' . Date('h:i:s', time()) . (double)microtime() . "rn"; * $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.1rn"; $out .= "Host: {$_SERVER['HTTP_HOST']}rn"; $out .= "Connection: Closernrn"; fputs($fp,$out); fclose($fp); } } } } }
Méthode d'utilisation, le code est le suivant :
$thread = new thread(); $thread->addthread('func1','info1'); $thread->addthread('func2','info2'); $thread->addthread('func3','info3'); $thread->runthread();
Instructions :
addthread () consiste à ajouter une fonction de thread. Le premier paramètre est le nom de la fonction, et les paramètres suivants (facultatifs) sont les paramètres transmis à la fonction spécifiée.
runthread () est la fonction du thread d'exécution .
Résumé :
Cet article partage une classe PHP multithread avec vous, donc vous vous n'aurez pas besoin d'écrire autant de code à l'avenir. Vous pourrez l'appeler directement la prochaine fois que vous en aurez besoin.
Recommandations associées :
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!