“Absoluter Pfad PHP” Code-Antworten

Absoluter Pfad PHP

// File in htdocs MAMP
echo getcwd(); //Users/Example/Applications/MAMP/htdocs
JérômeW

Holen Sie sich die Absolute -Pfad -PHP -Datei

SplFileInfo.

$path = new SplFileInfo(__FILE__);
echo 'The real path is '.$path->getRealPath();
Xabos

PHP -Dateispeicherort erhalten

# C:\Users\Redacted\Desktop\main.php
include __DIR__ . DIRECTORY_SEPARATOR . 'include.php';
echoScriptPath();

# C:\Users\Redacted\Desktop\include.php
function echoScriptPath() {
    list($scriptPath) = get_included_files();
    echo 'The script being executed is ' . $scriptPath;
}
Relieved Rattlesnake

Ähnliche Antworten wie “Absoluter Pfad PHP”

Fragen ähnlich wie “Absoluter Pfad PHP”

Weitere verwandte Antworten zu “Absoluter Pfad PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen