What functions in PHP can be used to determine the current working directory?

To determine the current working directory in PHP, you can use the `getcwd()` function. This function returns the current working directory as a string. You can then use this information in your PHP script to access files or directories relative to the current working directory.

$currentDirectory = getcwd();
echo "Current working directory is: " . $currentDirectory;