file_build_uri($path)
Constructs a URI to Drupal's default files location given a relative path.
Related topics
- File interface
- Common file handling functions.
File
- core/includes/file.inc, line 560
- API for handling file uploads and server file management.
Code
function file_build_uri($path) {
$uri = file_default_scheme() . '://' . $path;
return file_stream_wrapper_uri_normalize($uri);
}
Please login to continue.