Jump to content

Cannot use string offset as an array when trying to echo an array


the5thace
Go to solution Solved by AbraCadaver,

Recommended Posts

Fatal error: Cannot use string offset as an array in /..../ on line 6
 
 
 
{
       $bing_results[$b] = array 
      ('url' => $value->Url,  
       'title' => $value->Title,
       'snippet' => $value->Description,
       'rank' => 100-$b);
       echo 'Lets see? : '.$bing_results[$b]['url']['title']['snippet']['rank'];
       $b++;
    }

 

Link to comment
Share on other sites

Your array is only two levels deep..you are trying to echo it as if it is 5 levels deep.  If you just want to dump the contents of the array for QA, do this:

$bing_results[$b] = array 
      ('url' => $value->Url,  
       'title' => $value->Title,
       'snippet' => $value->Description,
       'rank' => 100-$b);
       echo 'Lets see? : <br/>';
       echo '<pre>'; print_r($bing_results[$b]); echo '</pre>';
       $b++;

If you want to echo individual elements, do for example this: $bing_results[$b]['url'] or $bing_results[$b]['title']

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.