gpt4 book ai didi

PHP HTTP请求

转载 作者:行者123 更新时间:2023-12-02 05:46:58 25 4
gpt4 key购买 nike

我需要从 PHP 执行 HTTP GET。

更具体地说,我需要从/index.php 中获取/trac/和/svn/的内容,找到“ul”元素,然后在 index.php 上内联渲染。

/trac 和/svn 是相对 URL 而不是文件系统文件夹。 http://myserver/trachttp://myserver/svn

最佳答案

最简单的方法是file_get_contents() .

$str = file_get_contents('http://myserver/svn/');

// Or, if you don't want to hardcode the server
$str = file_get_contents('http://' . $_SERVER['HTTP_HOST'] . '/svn/');

if ($str)
{
// Find the ul
}

关于PHP HTTP请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/301637/

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