我正在寻找一个类/函数/ php脚本,通过cURL检查是否在fetch中找到了text,word或html代码,如果响应为true,则执行某些操作;如果是假的,做其他事情。更清楚的是,
if is found [You need to login]
do redirect:login.php
if is not found
do redirect:showList.php
希望我清楚易懂,希望有人能帮助我
谢谢!
答案 0 :(得分:0)
这是一种做法。它虽然没有使用curl。
$page = file_get_contents("http://www.example.com/page.html");
$search = strpos("$page", "the text we want");
if ($search !== false) {
header("Location: http://www.example.com/login.php");
die();
} else {
header("Location: http://www.example.com/showList.php");
die();
}