使用 php 读取 HTML 给出错误信息

发布于 2025-01-04 00:38:58 字数 493 浏览 0 评论 0原文

我正在尝试从 http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page 使用以下内容 代码。

$some_link = http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page;
$content = file_get_contents($some_link);
echo $content;

但我得到了错误的页面而不是原始页面,

你能告诉我问题是什么吗?

谢谢。

I am trying to get some data from http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page using the below code.

$some_link = http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page;
$content = file_get_contents($some_link);
echo $content;

But i am getting wrong page instead of the original

Can you please tell me what the problem is?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何时共饮酒 2025-01-11 00:38:59

初始化 $some_link 时错过了引号。这会起作用。

$some_link = 'http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page';
$content = file_get_contents($some_link);
echo $content;

它将打开网页,因为 $some_link 包含 HTML 代码。这将打开与
http://itunes .apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page

我已经尝试过了,效果很好

You missed quotes when initializing $some_link. This will work.

$some_link = 'http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page';
$content = file_get_contents($some_link);
echo $content;

it will open webpage because $some_link contains HTML code.This opens the same page as
http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page

I have already tried and it works fine

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文