Which of the following is NOT a predefined constant in PHP?

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 correct answer is that BASE is not a predefined constant in PHP. Predefined constants are constants that PHP automatically makes available to all scripts without needing to define them first.

The constants DIR, FILE, and LINE are commonly used in PHP programming. DIR returns the directory of the current script, FILE returns the full path and filename of the current script, and LINE returns the current line number in the script. These constants are important for debugging and managing file paths dynamically.

On the other hand, BASE does not exist in PHP. This usage might stem from confusion with other frameworks or contexts where similar naming conventions are practiced, but PHP itself offers no predefined constant called BASE. Understanding which constants are predefined is essential for effective coding and troubleshooting in PHP.

Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy