Skip to content

Instantly share code, notes, and snippets.

@koentjuh1
Created December 9, 2016 08:29
Show Gist options
  • Save koentjuh1/459c914f6544cac58e4bb35122220140 to your computer and use it in GitHub Desktop.
Save koentjuh1/459c914f6544cac58e4bb35122220140 to your computer and use it in GitHub Desktop.
Check if afbeelding isset
<?php
if (strlen($nieuwsbericht->afbeelding) > 0 && file_exists(PUBLIC_PATH . '/' . $nieuwsbericht->afbeelding)) {
?>
<img itemprop="image" src="<?=getCrop($nieuwsbericht->afbeelding, '389x373')?>" alt="">
<?php
} else {
?>
<img itemprop="image" src="images/nieuws-lorum.jpg" alt="">
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment