“PHP Jalur Absolut” Kode Jawaban

PHP Jalur Absolut

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

Dapatkan file php path absolut

SplFileInfo.

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

php dapatkan lokasi file

# 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

Jawaban yang mirip dengan “PHP Jalur Absolut”

Pertanyaan yang mirip dengan “PHP Jalur Absolut”

Lebih banyak jawaban terkait untuk “PHP Jalur Absolut” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya