Skip to content

Instantly share code, notes, and snippets.

@CB9TOIIIA
Created November 8, 2017 08:56
Show Gist options
  • Save CB9TOIIIA/c733d3402a9b40a820f817d2516d9868 to your computer and use it in GitHub Desktop.
Save CB9TOIIIA/c733d3402a9b40a820f817d2516d9868 to your computer and use it in GitHub Desktop.
JFile::exists($imagePath)
if (strpos($imagePath, 'http') !== false) {
return true;
} else if (JFile::exists($imagePath) || JFile::exists(JPATH_ROOT . '/' . $imagePath)) {
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment