Answers for "path to current file php"

PHP
4

php current file name

basename(__FILE__, '.php');
Posted by: Guest on March-06-2020
-1

php get file location

# C:UsersRedactedDesktopmain.php
include __DIR__ . DIRECTORY_SEPARATOR . 'include.php';
echoScriptPath();

# C:UsersRedactedDesktopinclude.php
function echoScriptPath() {
    list($scriptPath) = get_included_files();
    echo 'The script being executed is ' . $scriptPath;
}
Posted by: Guest on June-19-2020

Browse Popular Code Answers by Language