Q
How do you close a file after reading from it in PHP?

Answer & Solution

Answer: Option A
Solution:
fclose() is used to close an open file pointer in PHP. It's important to close files after reading from them to free up system resources and prevent memory leaks.
Related Questions on Average

What does the 'a' mode do when opening a file in PHP?

A). Appends data to the end of the file

B). Reads data from the file

C). Truncates the file to zero length

D). Creates a new file if it doesn't exist

Which mode should be used to open a file for both reading and writing in PHP?

A). r+

B). w+

C). a+

D). rb+

What is the purpose of the 'w+' mode when opening a file in PHP?

A). Read and write mode, truncates file to zero length

B). Append mode, creates new file if it doesn't exist

C). Write mode, appends data to end of file

D). Read mode, creates new file if it doesn't exist

Which mode should be used to open a file for writing in PHP?

A). w

B). r

C). a

D). wb

Which function is used to delete a file in PHP?

A). unlink()

B). delete_file()

C). remove_file()

D). erase()

What happens if you try to open a non-existent file in 'r' mode?

A). fopen() returns false

B). A new file is created

C). The script throws an error

D). The file is opened in read mode

How do you check if a file is writable in PHP?

A). is_writable()

B). can_write()

C). is_writeable()

D). writable_file()

Which function is used to read a single line from a file in PHP?

A). fgets()

B). fread()

C). fget()

D). readline()

Which function is used to check if a file exists in PHP?

A). file_exists()

B). is_file()

C). file_check()

D). check_file()

Which function is used to read the entire content of a file into a string in PHP?

A). file_get_contents()

B). fread()

C). fget_contents()

D). read_file()