gpt4 book ai didi

php - 如果 URL 是文本文件中的一行,则 file_get_contents 不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:08:02 25 4
gpt4 key购买 nike

嘿,我是 PHP 新手,所以这可能是一个明显的错误。目前我正在尝试从 metacritic 读取游戏分数并将其显示给用户。这是我用来执行此操作的代码:

$linkToGame= 'METACRITIC LINK';

$opts = array('http' => array('header' => "User-Agent:MyAgent/1.0\r\n"));
$context = stream_context_create($opts);
$url = file_get_contents($linktoGame, FALSE, $context);

$first_step = explode( '<span itemprop="ratingValue">' , $url );
$second_step = explode("</span>" , $first_step[1] );

echo $second_step[0];

这正是它的本意,即从 metacritic url 输出游戏评级。我现在要做的是让它使用一个文本文件中的链接,该文本文件包含 115 个 metacritic 链接的列表。

我用它来读取文本文件。

$lines = file('metacriticlinks.txt');

然后将 $linkToGame 切换为

$linkToGame = $lines[1];

然而,通过这样做,我得到以下错误:

"Warning: file_get_contents(http://www.metacritic.com/game/3ds/steamworld-heist ): failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found in C:\xampp\htdocs\learn\getwebcontent.php on line 19"

奇怪的是,如果我将 $linkToGame 替换为它在警告中显示的确切 URL,代码将完美运行并显示该游戏的分数。我尝试将每一行读入一个数组并使用数组中的一个项目,但这也不起作用并产生了相同的警告。

这个问题最奇怪的部分是,如果我使用文本文件或数组 (115) 中的最后一行,代码将正常工作。除了最后一行,它对任何其他行都不起作用。可能是什么问题?

非常感谢。

最佳答案

我认为由于 file() 的工作方式,您的所有文件名都附加了一个换行符,除了最后一个。

来自 file() 上的 php.net 站点:

"Returns the file in an array. Each element of the array corresponds to a line in the file, with the newline still attached"

http://php.net/manual/en/function.file.php

很好地描述了您的问题和代码行为!

正如 Daniel 所指出的,您可以使用 trim() 函数删除它: http://www.w3schools.com/php/func_string_trim.asp

关于php - 如果 URL 是文本文件中的一行,则 file_get_contents 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34258880/

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