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