Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using OpenGraph to parse some meta property datas from websites, like this:

$v = 'http://url.com/';
$graph = OpenGraph::fetch($v);
$image = $graph->image . "\n";
$title = $graph->title . "\n";
$site_name = $graph->site_name . "\n";
$description = $graph->description . "\n";

But, some websites don't have the meta property og:image on it.. So my $image array become an empty array and result in something like this:

<img src="" />

How can I change the array value for a generic value if $image array is empty? That's seems simple but I can't find a good solution...

share|improve this question

2 Answers

up vote 0 down vote accepted

Maybe this can solve your doubts ? :

$image = $graph->image != "" ? $graph->image."\n" : "default_value"."\n";
share|improve this answer

I suppose you need to handle it yourself by testing the return value:

$graph = OpenGraph::fetch($v);
$image = $graph->image;
if (empty($image))
{
    $image = 'http://yoursite.com/default_og_img.jpg';
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.