Skip to content

Instantly share code, notes, and snippets.

@akool
Created December 4, 2014 11:50
Show Gist options
  • Select an option

  • Save akool/097502b846a2f1d22578 to your computer and use it in GitHub Desktop.

Select an option

Save akool/097502b846a2f1d22578 to your computer and use it in GitHub Desktop.
Get the first image from content
<?php
$content = $modx->resource->content;
if(preg_match("/src=\"(.*?)\"/",$content,&$matches)){
$img = substr($matches[1],1,strlen($matches[1]));
}
else {
$img = "assets/images/defaultImage.png";
}
return $img;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment