| Versions | |
|---|---|
| 7 | file_build_uri($path) |
Given a relative path, construct a URI into Drupal's default files location.
drupal/
<?php
function file_build_uri($path) {
$uri = file_default_scheme() . '://' . $path;
return file_stream_wrapper_uri_normalize($uri);
}
?>