从其他站点抓取值的 PHP 代码

发布于 2024-12-01 15:48:00 字数 309 浏览 1 评论 0原文

我正在尝试使用该网站下面的代码从其他网站获取一些值,

$values = file_get_contents('http://www.example.com/');

(MISSING CODE)

echo $values;

该网站只有文本全部位于第一行。基本上它只是一个文本行。所以我需要从中获取第 11 到 18 个值。

值不在 csv 中,它的值在 body 标记中,查看源是 {"token":"ABCDEFGH","expire":2345789542} 所以我需要 abcdefgh 值

i am trying to get a some values from other site using code below

$values = file_get_contents('http://www.example.com/');

(MISSING CODE)

echo $values;

the site has only text all in first row. basically its just a text line. so i need to get 11th to 18th vale from it.

values are not in csv its values are in body tags and view source is {"token":"ABCDEFGH","expire":2345789542} so i need abcdefgh value

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

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

发布评论

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

评论(3

允世 2024-12-08 15:48:01

只需尝试在输出值上使用子字符串,就像我在下面给出的那样

substring($values,11,7);

Just try to use substring on the output value like the one i ve given below

substring($values,11,7);
宫墨修音 2024-12-08 15:48:01

您的意思是该网站返回 CSV(一行逗号或制表符分隔的文本?)如果是这样,请查看 str_getcsv

一个例子:

$text = file_get_contents('http://www.domain.com/');
$values = str_getcsv($text);
for ($i=11; $i <= 18; $i++) {print $values[$i]."\n";}

Do you mean that the site is returning CSV (a line of comma or tab delimited text?) If so check out str_getcsv.

An example:

$text = file_get_contents('http://www.domain.com/');
$values = str_getcsv($text);
for ($i=11; $i <= 18; $i++) {print $values[$i]."\n";}
番薯 2024-12-08 15:48:00

如果您的示例正确,则它是一种称为 JSON 的格式。 PHP 对此有支持:

$decoded = json_decode('{"token":"ABCDEFGH","expire":2345789542}');
echo $decoded->token;

输出

ABCDEFGH

If your example is correct, it's a format called JSON. Php has support for it:

$decoded = json_decode('{"token":"ABCDEFGH","expire":2345789542}');
echo $decoded->token;

outputs

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