Created
May 19, 2019 09:35
-
-
Save WordPress-Handbuch/e1ac57919370529c5e9850c2d3444c21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
echo 'basename(dirname(__FILE__)) = ' . basename(dirname(__FILE__)) . "<br/>"; | |
echo '$_SERVER["PHP_SELF"] = ' . $_SERVER["PHP_SELF"] . "<br/>"; | |
echo '$_SERVER["DOCUMENT_ROOT"] = ' . $_SERVER["DOCUMENT_ROOT"] . "<br/>"; | |
echo 'dirname(__FILE__) = ' . dirname(__FILE__) . "<br/>"; | |
echo 'getcwd() = ' . getcwd() . "<br/>"; | |
echo '__FILE__ = ' . __FILE__ . "<br/>"; | |
phpinfo(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment