Answer & Solution
fopen() function is used to open files, but to create a new file, you would typically use the fopen() function with mode 'w' or 'x' to open the file for writing or create a new file if it doesn't exist.
fopen() function is used to open files, but to create a new file, you would typically use the fopen() function with mode 'w' or 'x' to open the file for writing or create a new file if it doesn't exist.
What does the PHP function pathinfo() return?
A). Information about a file path
B). Extension of a file
C). Directory name component of a path
D). Size of a file
Which PHP function creates a directory?
A). mkdir()
B). scandir()
C). rmdir()
D). chdir()
What is the purpose of the PHP function file_exists()?
A). Checks if a file or directory exists
B). Returns the absolute path of a file
C). Extracts the extension of a file path
D). Returns the parent directory of a file
What does the PHP function is_readable() check for?
A). Checks if a file is readable
B). Checks if a file is writable
C). Checks if a file is executable
D). Checks if a file is deletable
What does the PHP function getcwd() return?
A). Current working directory
B). Contents of a directory
C). Size of a file
D). Absolute path of a file
What does the PHP function dirname() return?
A). Directory name component of a path
B). Filename component of a path
C). Absolute path of a file
D). Parent directory of the current directory
What does the PHP function scandir() do?
A). Returns an array of files and directories in a directory
B). Returns the contents of a file
C). Returns the current working directory
D). Returns the size of a file
What does the PHP function is_file() check for?
A). Checks if a path is a regular file
B). Checks if a path is a directory
C). Checks if a file is writable
D). Checks if a file is readable
Which PHP function returns the absolute path of a file?
A). realpath()
B). basename()
C). dirname()
D). pathinfo()
What is the PHP function to check if a path is a directory?
A). is_dir()
B). is_file()
C). file_exists()
D). exists()