What does $_FILES mean?
- An array of uploaded files
- A global constant
- A predefined file function
- A global function
In PHP, $_FILES is a superglobal array that holds information about uploaded files, such as file names, temporary locations, and file sizes. It is used when handling file uploads. Learn more: http://php.net/manual/en/reserved.variables.files.php
Loading...
Related Quiz
- Which of the following are features of PHP?
- An abstract class in PHP OOP is a class that cannot be instantiated and is meant to be ______ by other classes.
- You are writing a PHP script and you need to find the highest value in a list of numbers. How would you do this?
- How can we determine whether a PHP variable is an instantiated object of a certain class?
- How many expressions does a PHP for loop contain and what are they used for?