Skip to content

Instantly share code, notes, and snippets.

@enopanen
Created December 7, 2013 22:36
Show Gist options
  • Select an option

  • Save enopanen/7850306 to your computer and use it in GitHub Desktop.

Select an option

Save enopanen/7850306 to your computer and use it in GitHub Desktop.
Find full path to the current php directory
<?php
$dir = dirname(__FILE__);
echo "<p>Full path to this dir: " . $dir . "</p>";
echo "<p>Full path to a .htpasswd file in this dir: " . $dir . "/.htpasswd" . "</p>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment