Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Last active September 14, 2017 12:39
Show Gist options
  • Select an option

  • Save jasonglisson/ec7dba339e01b6b3c4fc to your computer and use it in GitHub Desktop.

Select an option

Save jasonglisson/ec7dba339e01b6b3c4fc to your computer and use it in GitHub Desktop.
Drupal 7 - Turn uri file path into url
<img src="<?php
$url = file_create_url($node->field_newsletter_cover['und'][0]['uri']);
$url = parse_url($url);
$path = $url['path'];
print $path; ?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment