Skip to content

Instantly share code, notes, and snippets.

@Magnacarter
Created December 17, 2014 23:02
Show Gist options
  • Save Magnacarter/8052572d3d7cab2fc97f to your computer and use it in GitHub Desktop.
Save Magnacarter/8052572d3d7cab2fc97f to your computer and use it in GitHub Desktop.
EZ File paths.
<?php
/**
*use this for file paths.
*@param string
*
*@return string
*/
function ez_file_path( $file ) {
$host = $_SERVER[ "HTTP_HOST" ];
$path = rtrim ( dirname( $_SERVER[ "PHP_SELF" ] ), "/\\" );
return "http://$host$path/$file";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment