Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 502 Bytes

0301.md

File metadata and controls

31 lines (24 loc) · 502 Bytes

Which of the following functions will you use to read a file having single line irrespective of length? Each correct answer represents a complete solution. Choose two.

  • A)
fgetss($fp);
  • B)
fgets($fp);
  • C)
fread($fp, 1024);
  • D)
fread($fp);
Answer

Answer: A, B