gpt4 book ai didi

PHP json_decode 带回空值

转载 作者:可可西里 更新时间:2023-10-31 23:08:47 24 4
gpt4 key购买 nike

我正在努力让它发挥作用,但看不出哪里出了问题。有人可以帮忙吗?

<?php
$jsonurl = 'http://www.foxsports.com.au/internal-syndication/json/livescoreboard';
$json = file_get_contents($jsonurl,0,null,null);
$json_output = var_dump(json_decode($json,true));

echo $json_output
?>

最佳答案

提示:

初始 JSON(存储在 $json 变量中)未验证。

代码:(固定)

<?php

$jsonurl='http://www.foxsports.com.au/internal-syndication/json/livescoreboard';
$json = file_get_contents($jsonurl,0,null,null);

$json = strip_tags(str_replace("jQuery.fs['scoreboard'].data =","",$json));

$json_output = var_dump(json_decode($json,true));

echo $json_output;

?>

这会起作用。 :-)

关于PHP json_decode 带回空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9849562/

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