Created
August 12, 2021 22:42
-
-
Save tadeubdev/74fd6bb9aedfca37b09ff92251811a8b 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 | |
| $directory = `pwd`; // há outras maneiras, só pra exemplificar | |
| echo $directory; // /var/www/html/meu-site-foda | |
| $whoami = `whoami`; | |
| echo $whoami; // user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment