php如何检测文件内是否存在特定内容
发布网友
发布时间:2022-04-06 03:20
我来回答
共1个回答
热心网友
时间:2022-04-06 04:49
一般使用curl获取,以前可以用file_get_contents获取
<?php
$res = file_get_contents('url地址或文件'); // 得到结果
if ($res != 'not') {
// 弹窗需要使用js
echo "<script>alert('输出信息');window.location='需要跳转的地址';</script>";
}