这是我写的代码:
$result = $textProc->sentiment($text);
$json_a = json_decode($result, true);
echo $json_a[label];
其中 $result 存储 JSON 数据。
但是,它返回给我错误:
Warning: json_decode() expects parameter 1 to be string, object given in C:\xampp
\htdocs\ai\sentiment.php on line 9
Notice: Use of undefined constant label - assumed 'label' in C:\xampp\htdocs
\ai\sentiment.php on line 11
解决方案:这是 var_dump($result) 的输出:
object(stdClass)#2 (2) { ["value"]=> float(0.63882080795918) ["sent"]=> int(1) }
对不起,我应该先检查一下。