簡體   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