php fscokopen实现数据异步调用代码
php fscokopen实现数据异步调用代码
我们就可以使用fsockopen连接到本地服务器,触发脚本执行,然后立即返回,不等待
脚本执行完成。
function triggerRequest($url,
$post_data
=
array(),
$cookie
=
array())…{
$method
=
"GET"; //可以通过POST或者GET传递一些参数给要触发的脚本
$url_array
=
parse_url($url); //获取URL信息,以便平凑HTTP HEADER
$port
=
isset($url_array['port'])?
$url_array['port'] :
80;
$fp
=
fsockopen($url_array['host'],
$port,
$errno,
$errstr,
30);
if (!$fp) …{
return
FALSE;
}
$getPath
=
$url_array['path'] ."?".
$url_array['query'];
if(!empty($post_data))…{
$method
=
"POST";
}
$header
=
$method
.
"
"
.
$getPath;
$header
.=
" HTTP/1.1rn";
$header
.=
"Host: ".
$url_array['host'] .
"rn
"; //HTTP 1.1 Host域不能省略
/**//*以下头信息域可以省略
$header .= "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en
-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13 rn";
$header .= "Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=
0.8,image/png,q=0.5 rn";
$header .= "Accept-Language: en-us,en;q=0.5 ";
$header .= "Accept-Encoding: gzip,deflatern";
*/
$header
.=
"Connection:Closern";
if(!empty($cookie))…{
$_cookie
=
strval(NULL);
foreach($cookie
as
$k
=>
$v)…{
$_cookie
.=
$k."=".$v."; ";
}
$cookie_str
=
"Cookie: "
.
base64_encode($_cookie) ." rn";//传递Cookie
$header
.=
$cookie_str;
}
if(!empty($post_data))…{
$_post
=
strval(NULL);
foreach($post_data
as
$k
=>
$v)…{
$_post
.=
$k."=".$v."&";
}
$post_str
=
"Content-Type: application/x-www-form-urlencodedrn";//POST数据
$post_str
.=
"Content-Length: ".
strlen($_post) ." rn";//POST数据的长度
$post_str
.=
$_post."rnrn "; //传递POST数据
$header
.=
$post_str;
}
fwrite($fp,
$header);
//echo fread($fp, 1024); //我们不关心服务器返回
fclose($fp);
return
true;
}
现在,就可以通过这个函数来触发一个PHP脚本的执行,然后函数就会返回。 我们
就可以接着执行下一步操作了。
还有一个问题就是,当客户端断开连接以后。也就是triggerRequest发送请求后,
立即关闭了连接,那么可能会引起服务器端正在执行的脚本退出。
在 PHP 内部,系统维护着连接状态,其状态有三种可能的情况:
* 0 - NORMAL(正常)
* 1 - ABORTED(异常退出)
* 2 - TIMEOUT(超时)
当 PHP 脚本正常地运行 NORMAL 状态时,连接为有效。当客户端中断连接时,
ABORTED状态的标记将会被打开。远程客户端连接的中断通常是由用户点击 STOP 按钮
导致的。当连接时间超过 PHP 的时限(请参阅set_time_limit() 函数)时,TIMEOUT
状态的标记将被打开。
可以决定脚本是否需要在客户端中断连接时退出。有时候让脚本完整地运行会带来
很多方便,即使没有远程浏览器接受脚本的输出。默认的情况是当远程客户端连接中断
时脚本将会退出。该处理过程可由 php.ini 的 ignore_user_abort 或由 Apache
.conf设置中对应的“php_value ignore_user_abort”以及 ignore_user_abort() 函
数来控制。如果没有告诉PHP 忽略用户的中断,脚本将会被中断,除非通过
register_shutdown_function()设置了关闭触发函数。通过该关闭触发函数,当远程用
户点击 STOP 按钮后,脚本再次尝试输出数据时,PHP将会检测到连接已被中断,并调
用关闭触发函数。
脚本也有可能被内置的脚本计时器中断。默认的超时限制为 30 秒。这个值可以
通过设置 php.ini 的max_execution_time 或 Apache .conf 设置中对应的
“php_valuemax_execution_time”参数或者 set_time_limit()函数来更改。当计数器
超时的时候,脚本将会类似于以上连接中断的情况退出,先前被注册过的关闭触发函数
也将在这时被执行。在该关闭触发函数中,可以通过调用 connection_status() 函数
来检查超时是否导致关闭触发函数被调用。如果超时导致了关闭触发函数的调用,该函
数将返回 2。
需要注意的一点是 ABORTED 和 TIMEOUT 状态可以同时有效。这在告诉 PHP 忽略
用户的退出操作时是可能的。PHP将仍然注意用户已经中断了连接但脚本仍然在运行的
情况。如果到了运行的时间限制,脚本将被退出,设置过的关闭触发函数也将被执行。
在这时会发现函数connection_status() 返回 3。
所以还在要触发的脚本中指明:
ignore_user_abort(TRUE); //如果客户端断开连接,不会引起脚本abort.
set_time_limit(0);//取消脚本执行延时上限
或者,也可以使用:
register_shutdown_function(callback fuction[, parameters]);//注册脚本退出时
执行的函数

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

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

In iOS 17, Apple introduced several new privacy and security features to its mobile operating system, one of which is the ability to require two-step authentication for private browsing tabs in Safari. Here's how it works and how to turn it off. On an iPhone or iPad running iOS 17 or iPadOS 17, Apple's browser now requires Face ID/Touch ID authentication or a passcode if you have any Private Browsing tab open in Safari and then exit the session or app to access them again. In other words, if someone gets their hands on your iPhone or iPad while it's unlocked, they still won't be able to view your privacy without knowing your passcode

The famous activation script MAS2.2 version supports digital activation again. The method originated from @asdcorp and the team. The MAS author calls it HWID2. Download gatherosstate.exe (not original, modified) from https://github.com/massgravel/Microsoft-Activation-Scripts, run it with parameters, and generate GenuineTicket.xml. First take a look at the original method: gatherosstate.exePfn=xxxxxxx;DownlevelGenuineState=1 and then compare with the latest method: gatheros

Cookies are usually stored in the cookie folder of the browser. Cookie files in the browser are usually stored in binary or SQLite format. If you open the cookie file directly, you may see some garbled or unreadable content, so it is best to use Use the cookie management interface provided by your browser to view and manage cookies.

Cookies on your computer are stored in specific locations on your browser, depending on the browser and operating system used: 1. Google Chrome, stored in C:\Users\YourUsername\AppData\Local\Google\Chrome\User Data\Default \Cookies etc.
![How to Hide and Unhide Folders on Windows 11 [3 Ways]](https://img.php.cn/upload/article/000/887/227/169542942766265.jpg?x-oss-process=image/resize,m_fill,h_207,w_330)
Hiding folders is a great way to keep your desktop organized. Maybe you want to keep your personal files or some client details away from prying eyes. Whatever it is, the ability to put them away and unhide them when necessary is a big saver. In short, these hidden files will not show up in the main menu, but they will still be accessible. It's very simple and shouldn't take you too much time. How to hide a folder in Windows 11? 1. Use File Explorer and hit the + key to open File Explorer. WindowsE Find the folder you want to hide, right-click it and select Properties. Navigate to the General tab, check the Hide box, click Apply, and then click OK. In the next dialog box, check Apply changes to this folder, sub-folder

Cookies on the mobile phone are stored in the browser application of the mobile device: 1. On iOS devices, Cookies are stored in Settings -> Safari -> Advanced -> Website Data of the Safari browser; 2. On Android devices, Cookies Stored in Settings -> Site settings -> Cookies of Chrome browser, etc.
