我在 PHP 中有一个名为 $definition 的对象。
当我
print_r($definition);
我明白了
Array ( [0] => 定义对象 ( [extendedText] => [text] => 鼬科的几种食肉穴居哺乳动物中的任何一种,例如欧亚大陆的 Meles meles 或北美的 Taxidea taxus,腿短,爪子长在前脚上,还有一件厚重的灰白大衣。[source] => [sourceDictionary] => ahd-legacy [citations] => Array ( ) [labels] => Array ( ) [score] => 0 [exampleUses] = > Array ( ) [attributionUrl] => [seqString] => [attributionText] => 来自 The American Heritage® Dictionary of the English Language, 4th Edition [relatedWords] => Array ( ) [sequence] => 0 [word] = > 獾 [textProns] => 数组 () [notes] => 数组 () [partOfSpeech] => 名词))
如何打印出“text”和“partOfSpeech”组件?
我试过 $definition->text, $definition[0]['text'], $definition['text']....
我迷路了...