I've got a bit of a complicated array that I'm working with and I'm not sure how to retrieve one of the values in the array. The array structure is as below and I'm trying to get the 'value'.
array (
0 => Drupal\search_api\Query\Condition::__set_state(
array(
'field' => 'title',
'value' => 'hello',
'operator' => 'CONTAINS',
)
),
)
I tried using $array[0]['value'] but it returns NULL.
Any ideas on how to go about this one?