Are there any alternative methods to determine the absolute path in PHP besides using $_SERVER["DOCUMENT_ROOT"]?

When determining the absolute path in PHP, an alternative method to using $_SERVER["DOCUMENT_ROOT"] is to use the realpath() function. This function returns the absolute path of a given file or directory by resolving any symbolic links or references.

$absolutePath = realpath(dirname(__FILE__));
echo $absolutePath;