Skip to content

Instantly share code, notes, and snippets.

@tadeubdev
Created August 12, 2021 22:42
Show Gist options
  • Select an option

  • Save tadeubdev/74fd6bb9aedfca37b09ff92251811a8b to your computer and use it in GitHub Desktop.

Select an option

Save tadeubdev/74fd6bb9aedfca37b09ff92251811a8b to your computer and use it in GitHub Desktop.
<?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