3

我在将内容/数组从 Web 服务获取到我的 php 代码时遇到问题。当我在浏览器中输入网址时,例如http://server1-xeon.asuscomm.com/currency/?amount=1.20,from=MYR,to=SGD,然后浏览器中的结果显示如下: [ 1.20MYR , 0.39 新元]。我的 PHP 代码如下所示:

$ch = curl_init('http://server1-xeon.asuscomm.com/currency/?amount=1.20,from=MYR,to=SGD');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$content = curl_exec($ch);
curl_close($ch);
echo $content;

不幸的是,我没有使用上面的代码。寻求帮助。谢谢。

更新

 $data=array(
'amount'=>1.2,
'fromCurrency'=>'MYR',
'toCurrency'=>'SGD'
 );

 $data_string = json_encode($data);

 $ch = curl_init('http://server1-xeon.asuscomm.com/currency/WebService.asmx/YaHOO_CurrencyEx');

 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');                                                                     
 curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);                                                                  
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
 curl_setopt($ch, CURLOPT_HTTPHEADER, 
    array('Content-type: application/json'));                                                                                                       
$content= curl_exec($ch);
curl_close($ch);
$obj = json_decode($content);
echo $obj;
4

2 回答 2

2

此页面包含由 JavaScript 加载的动态内容。例如,您可以通过访问view-source:http://server1-xeon.asuscomm.com/currency/?amount=1.20,from=MYR,to=SGD在 Google Chrome 中看到它。

如果您仔细查看页面的源代码(文件http://server1-xeon.asuscomm.com/currency/JQuery/app_converter.js),您会发现它使用此代码在后台获取交换数据:

$.ajax({type: "POST",
        url: "WebService.asmx/YaHOO_CurrencyEx",  // important: it's a relative URL!
        data: "{amount:" + amount + ",fromCurrency:'" + from + "',toCurrency:'" + to + "'}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        beforeSend: function () {},
        success: function (data) {
            $('#results').html(' [ ' + amount + from + ' , ' + data.d.toFixed(2) + to + ' ] ');
        });

因此,实际上您可以在 PHP 中发出这样的请求,以避免访问http://server1-xeon.asuscomm.com/currency/?amount=1.20,from=MYR,to=SGD页面上的动态内容。

UPD: 我添加了更完整的解释。

在此处输入图像描述

http://server1-xeon.asuscomm.com/currency/?amount=1.20,from=MYR,to=SGD上的页面加载时,此页面上的 JavaScript 代码(这意味着它在客户端上执行侧,在浏览器中,而不是在您的服务器上)解析 URL 参数并向URL http://server1-xeon.asuscomm.com/currency/WebService.asmx/YaHOO_CurrencyExAJAX POST发出请求。它传递一个 JSON 有效负载并获得这样的响应。因此,您可以通过向http://server1-xeon.asuscomm.com/currency/WebService.asmx/YaHOO_CurrencyEx发出直接请求,传递一个,和JSON 正文,然后使用.{amount:1.20,fromCurrency:'MYR',toCurrency:'SGD'}{"d":0.390360}POSTcurlamountfromCurrencytoCurrencyjson_decode($content);

于 2016-01-16T10:01:39.863 回答
1

数据应该是什么样子?将其从“更新”添加到您的代码并运行:

$array["MYR"] = 1.2;
$array["SGD"] = doubleval($obj->d)

// Print simple array (print source for example)
echo "<pre>";
print_r($array);
echo "</pre>";

// Print true JSON-array
print_r(json_encode($array));

在网络浏览器中,您将看到:

Array
(
    [MYR] => 1.2
    [SGD] => 0.39036
)

{"MYR":1.2,"SGD":0.39036}

目前无法理解您的问题。

如果您只想打印返回值(数字),请执行以下操作:echo $obj->d;

于 2016-01-16T14:56:06.033 回答