繁体   English   中英

从 API 使用 curl 得到这个

[英]Got this from a API using curl

尝试为每个数据点添加某种值,以便我可以将响应(仅限数字)发送到现有表。 我一直在网上搜索,没有 CURL API 响应似乎很简单,所以我可以找到答案。 (对不起,新手,不知道“行话”)

这是我能够在屏幕上回显的响应。

"{"price": 2049.27, "change_point": -5.76, "change_percentage": -0.28, "total_vol": "1.27M"}"

rest 的 php 下面

<html>
<?php

    $url = 'https://realstonks.p.rapidapi.com/';
    $collection_name = $_REQUEST["stock_name"];
    $request_url = $url . '/' . $collection_name;
    $curl = curl_init($request_url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HTTPHEADER, [

    'X-RapidAPI-Host: www.xyz.com',
    'X-RapidAPI-Key: xxxxxxxxxxxxxxxxxxx',
    'Content-Type: application/json']);

    $response = curl_exec($curl);
    curl_close($curl);



    //Uncomment bellow to show data on screen
echo $response . PHP_EOL;

    enter code here

//var_dump(json_decode($json));
//var_dump(json_decode($json, true));


//  Initiate curl
$ch = curl_init();
// Will return the response, if false it print the response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Set the url
curl_setopt($ch, CURLOPT_URL,$url);
// Execute
$result=curl_exec($ch);

// Closing
curl_close($ch);


 ?>

我对 PHP 不太感兴趣,但在这里。 如果我没记错的话,我认为您想将$response存储在<td>元素中。 这个资源可以帮助https://www.daniweb.com/programming/web-development/threads/428730/how-to-display-php-variable-in-html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM