大家好, PHP 如何模拟多线程
php 多线程
大家好, PHP 如何模拟多线程纠结了好久,也不行,
b.php的代码
/***Run*多线程机制*/function run($i){//连接服务器:注意如果你是以ssl/tls连接时,$host的值为:“ssl://www.example.com”即应加上"ssl://"前缀。//且$port值为443$host = $_SERVER['HTTP_HOST'];$port = 80;$fp = fsockopen($host,$port,$errorno,$errormsg); //连接服务器 if(!$fp){die("$errorno----------$errormsg");}else{$i = "i=$i";//传递的数据$path = '/a.php';//请求路径$method = 'POST'; //请求方法(POST方式)//HTTP的请求一般是GET或POST命令(POST用于FORM参数的传递)。格式为:方法 路径/文件名 HTTP/1.1/r/n(协议版本)$post = "$method $path HTTP/1.1/r/n"; //GET方式为:"GET /test/create_file.php?i HTTP/1.1/r/n";//Host头域指定请求资源的Intenet主机和端口号,必须表示请求url的原始服务器或网关的位置。HTTP/1.1请求必须包含主机头域,否则系统会以400状态码返回。$post .= "HOST: {$_SERVER['HTTP_HOST']} /r/n";//Content-Type实体头用于向接收方指示实体的介质类型,指定HEAD方法送到接收方的实体介质类型,或GET方法发送的请求介质类型。$post .= "Content-type: application/x-www-form-urlencoded/r/n";//Content-length它指示HTTP体信息的长度(字节)。$post .= "Content-length: ".strlen($i)."/r/n";$post .= "Connection: Close/r/n/r/n";$post .= "$i/r/n";//POST方式传递数据,在GET方式时,此处不要。fputs($fp,$post);}fclose($fp);}//触发多线程 for($i=0;$i<=2;$i++){run($i); }
a.php
$i = $_POST['i'];//GET方式请求时为:$i = $_GET['i']file_put_contents('d:s_'.$i.'_'.time().'.php',time());
回复讨论(解决方案)
坑爹的可以了, 要把 / 换成 \
来个人接一下分!!!
刚刚学习php 呵呵
function conWrite($filename, $content) { $filename_lock = $filename.'.lock'; while(1) { if(file_exists($filename_lock)) { usleep(1000); } else { touch($filename_lock);//加锁 $f = fopen($filename, 'w'); fwrite($f,$content); fclose($f); unlink($filename_lock); break; } } if(file_exists($filename_lock)) { unlink($filename_lock); } }
个人采集经验,一直以来都是多线程就死机。。。感觉PHP对多线程的支持不太友好
php本身就不支持多线程
坑爹的可以了, 要把 / 换成 \
a.php 代码是什么用?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...
