PHP code :
print_r($InformationRetrieval['KeywordExtraction'][1]);
Outputs :
Array
(
[google] => 15
[search] => 18
[or] => 2
[web] => 4
[is] => 4
[a] => 5
[engine] => 2
}
but needs to print words that are indexes of this array eg: google, search, or, web etc..
How is it done?
array_keysSee my answer and demo further details