Subject

PHP Programming

Practice related MCQ quizzes and improve step by step.

Quizzes in PHP Programming

What’s the difference between unset() and unlink()

Correct answer(s):
    • unset() sets a variable to "undefined" and unlink() deletes a file from the file system.


What’s the difference between the include() and require() functions?

Correct answer(s):
    • require() function exits with a fatal error if the file can't be included, while the include() function may still pass and jump to the next step in the execution.