Seite 1 von 1

Relativen und Absoluten Pfad ermitteln

Verfasst: 11.01.2004 09:38
von AWSW
Beschreibung: Relativen Pfad ermitteln
phpBB Version: >2.0.1

Code: Alles auswählen

<?PHP

define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);

echo "http://" . $_SERVER['HTTP_HOST'] . $board_config['script_path'];

?>
--------------------------------------------------------------

Beschreibung: Absoluten Pfad ermitteln
phpBB Version: >2.0.1

Code: Alles auswählen

<? 
echo "Der absolute Pfad lautet: "; 
$path = str_replace ("\\\\","/",__FILE__); 
$path = dirname ($path); 
$path = trim($path); 
echo "<b>$path</b>"; 
?>