我想从JSON请求中提取iframe代码并将其显示在HTML文档中。
链接是:https://sketchfab.com/oembed?url=https://sketchfab.com/show/a79f6f7b26574baeb58ce392f837c3c7
我想从此链接中提取的iframe代码是:
<iframe frameborder=\"0\"\n width=\"854\"\n height=\"480\" webkitallowfullscreen=\"true\"\n mozallowfullscreen=\"true\"\n src=\"http://sketchfab.com/embed/a79f6f7b26574baeb58ce392f837c3c7?autostart=0&transparent=0&autospin=0&controls=1&watermark=0\"></iframe>
我认为我可以在PHP中执行此操作并创建变量? 我不确定如何创建http请求,然后分解JSON结果。
右边的任何指针都很棒。
答案 0 :(得分:0)
你可以使用PHP来json_decode()
,如:
<?php
$file = file_get_contents('https://sketchfab.com/oembed?url=https://sketchfab.com/show/a79f6f7b26574baeb58ce392f837c3c7');
$stuff = json_decode($file);
echo $stuff->html;
?>