What constant in PHP returns the current working directory?

Disable ads (and more) with a premium pass for a one time $4.99 payment

Prepare for the Zend Certified PHP Engineer Exam with our comprehensive test, featuring flashcards and multiple choice questions. Each question comes with detailed hints and explanations. Ensure you're ready for your exam!

The constant that returns the current working directory in PHP is indeed the built-in function getcwd(). However, it's important to clarify the roles of the options.

While DIR is a magic constant that returns the directory of the file where it is used, it does not necessarily represent the current working directory of the executing script. Instead, it gives the path of the file itself, which can be different from the actual working directory.

In contrast, getcwd() is a function that specifically retrieves the current working directory and is the correct choice when you're looking for the directory in which the PHP script is currently executing. It is able to reflect changes made to the current working directory during the script's runtime, while DIR remains static based on the file context.

Hence, getcwd() is the accurate method to obtain the current working directory, providing the expected functionality in PHP when dealing with directory management.

Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy