gpt4 book ai didi

用于在网页上搜索单词的 PHP 脚本

转载 作者:可可西里 更新时间:2023-11-01 00:06:55 24 4
gpt4 key购买 nike

有人可以告诉我如何更改以下 PHP 脚本以在站点 http://www.stutteringjohnsmith.com 时说“已找到”里面有“standup”这个词,如果没有就说“not found”

<?php
$data = file_get_contents('http://www.stutteringjohnsmmith.com/#/0');
$regex = '/Page 1 of (.+?) results/';
preg_match($regex,$data,$match);
var_dump($match);
echo $match[1];
?>

最佳答案

<?php
$data = file_get_contents('http://www.stutteringjohnsmmith.com/#/0');
$regex = '/standup/'; //<----
preg_match($regex,$data,$match);
var_dump($match);
echo $match[1];
?>

哈哈?

关于用于在网页上搜索单词的 PHP 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6330618/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com