我目前遇到PHP问题,我收到此错误,
类stdClass的对象无法转换为字符串,当我在我的网站中运行此部分代码时发生错误,
<?php
//Setup
$wsdl='https://api.netbiter.net/operation/v1/soap?wsdl';
$client=new SoapClient ($wsdl);
$accessKey='042B79FC23AB0925D4D20FBB8EE42B98'; //Replace by your access key
$systemId='003011FB506F'; //Replace by your system id
$parameterId='17379.0.44535'; //Replace by your data logging id
$limitRows='24'; //How many hour data logging
$sortOrder='desc'; //Order of the response list
$startDate='2013-12-04T03:00:00Z'; //The UTC start date and time limit for the list
$endDate='2013-12-05T03:00:00Z'; //The UTC end date and time limit for the list
?>
<?php
function handleArgosException(Exception $fault)
{
echo "Error: ";
echo "Message: {$fault->faultstring} ";
if (isset($fault->detail->ForbiddenException))
{
echo "Forbidden exception: Code {$fault->detail->ForbiddenException->code}";
}
else if (isset($fault->detail->LimitException))
{
echo "Limit exception: Code {$fault->detail->LimitException->code}";
}
else if (isset($fault->detail->GeneralException))
{
echo "General exception: Code {$fault->detail->GeneralException->code}";
}
}
?>
<?php
echo "<h1>Test Data Logging</h1>";
$param=array ('accessKey'=>$accessKey, 'systemId'=>$systemId, 'parameterId'=>$parameterId,
'limitRows'=>$limitRows, 'sortOrder'=>$sortOrder, 'startDate'=>$startDate,
'endDate'=>$endDate);
try
{
$resSystems = $client->getSystemHourAggregatedLoggedValues($param);
}
catch (SoapFault $fault)
{
handleArgosException($fault);
}
echo "<h2>Example code</h2>";
foreach($resSystems->HourAggregatedLogParameters as $label => $value)
{
echo "System $label : $value<br />";
}
?>
发生错误的行就是这一行,
echo "System $label : $value<br />";
我现在不知道这个问题是什么,所以任何帮助都会很棒。
答案 0 :(得分:0)
错误本身就很明显。它说你有一个stdObject
和php不知道如何打印它。
由于您没有给出任何错误跟踪,如果您确定从该行生成错误
echo "System $label : $value<br />";
,那意味着$label
或$value
的值不是正常的数据类型。它是un-named
类的一个对象,可能是在运行中生成的。
从类开始,此对象包含可以打印的字段。或者,您可以为此类定义toString()
方法,以便php可以使用此方法打印您的对象。
但很可能你对这个对象的fields
感兴趣。因此,您可以执行 var_dump($label)
或 print_r($label)
查看此对象中包含的字段。然后,您可以轻松地提取这些字段:echo $label->field1;