Jump to content

Undefined property: stdClass::$message


bravo14

Recommended Posts

I am using the following code

 

foreach ($fbdata->data as $post )
{
$posts .= '<li>';
$posts .= '<p>' . $post->message . '</p>';
$posts .= date('d-M-y', strtotime($post->created_time));
$posts .= '</li>';
}

 

and if the message propeerty doesn't exist I get the message above.

 

Any ideas on the best way to fix this?

Link to comment
https://forums.phpfreaks.com/topic/293723-undefined-property-stdclassmessage/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.