Jump to content

[PHP] Absolute Path


tOmmII
 Share

Recommended Posts

[color=blue][i]Soms heb je het nodig het absolute path van je site...
bijv. voor .htaccess

hier een scriptje om er achter te komen..[/i][/color]

[b]path.php[/b]
[code]<?php
 $arr = explode("/",$_SERVER["PATH_TRANSLATED"]);
 $file = $arr[count($arr)-1];
 $dir = substr($_SERVER["PATH_TRANSLATED"],0,strlen($_SERVER["PATH_TRANSLATED"])-strlen($file));
 echo $dir . "images/";
?>[/code]

[color=red][b]//tOmmII[/b][/color]
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...