Answer & Solution
mkdir()
function is used to create a directory in PHP. It takes the directory path as an argument and creates the directory with the specified path.
mkdir()
function is used to create a directory in PHP. It takes the directory path as an argument and creates the directory with the specified path.
Which PHP function sets the file pointer to the beginning of a file?
A). rewind()
B). reset()
C). fseek()
D). file_start()
What is the purpose of the PHP function fileatime()?
A). Retrieves the last access time of a file
B). Retrieves the last modified time of a file
C). Retrieves the creation time of a file
D). Retrieves the last status change time of a file
What PHP function is used to delete a file?
A). unlink()
B). remove()
C). delete()
D). file_delete()
What does the PHP function touch() do?
A). Updates the access and modification time of a file
B). Creates a new file
C). Deletes a file
D). Changes file permissions
Which PHP function is used to change file permissions?
A). chmod()
B). chown()
C). chgrp()
D). umask()
Which PHP function checks if a file or directory exists?
A). file_exists()
B). is_file()
C). exists()
D). check_file()
Which superglobal variable in PHP is used to handle file uploads?
A). $_FILES
B). $_POST
C). $_GET
D). $_REQUEST
What does the PHP function filetype() return?
A). Type of a file
B). Size of a file
C). Extension of a file
D). Permissions of a file
Which PHP function returns the parent directory of a file?
A). dirname()
B). realpath()
C). parentdir()
D). parent()
What is the PHP function to move an uploaded file to a new location?
A). move_uploaded_file()
B). copy()
C). rename()
D). move_file()