个人日记>正文
求大佬 给一个用shell访问一个URL的脚本
2021-04-03 16:09 gbl<?php
ignore_user_abort(true);
//忽略浏览器与服务器的交互
set_time_limit(0);
$sleep
= 2;
//间隔的时间 秒
$url
=
'http://baidu.com/'
;//要访问的地址
$confFile
=
'./http.conf.txt'
;
//配置文件
$logFile
=
'./http.log.txt'
;
//日志保存
if
(!
file_exists
(
$confFile
)){
//创建配制文件
file_put_contents
(
$confFile
, 0);
}
do
{
if
(
file_get_contents
(
$url
)){
file_put_contents
(
$logFile
,
'[OK]'
.
date
(
'Y/m/d H:i:s'
).PHP_EOL,FILE_APPEND);
echo
'OK'
;
}
else
{
file_put_contents
(
$logFile
,
'[FAIL]'
.
date
(
'Y/m/d H:i:s'
).PHP_EOL,FILE_APPEND);
echo
'Fail'
;
}
sleep(
$sleep
);
}
while
(
file_get_contents
(
$confFile
)==0);
粘贴保存为.php文件,放到web目录,然后访问,当浏览器处于挂起状态时关闭浏览器既可, 如果需要关闭,修改配置文件中的0为其他任意内容既可以在下次循环时停止。
本文链接:https://www.0937.biz/post-3137.html
猜你喜欢
- 2021-04-03 中国大陆IP段(含港澳)【2024-10-10】APNIC lasted 2024-10-10
- 2021-04-03 install.sh: 行 330: curl: 未找到命令
- 2021-04-03 百度移动端跳转代码
- 2021-04-03 【Rust Desk】手搓一个远程桌面软件,完全取代 向日葵、ToDesk!
- 2021-04-03 centos 7 安装tailscale步骤
- 2021-04-03 中国大学排名前20的大学 并标注公立或私立
- 2021-04-03 美国所有大学排名 并标注公立或私立
- 2021-04-03 Windows 11创建本地账户
- 2021-04-03 开启win10下Ubuntu子系统的SSH服务 并设置为开机启动
- 图文推荐
- 热门标签