Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 560 Bytes

0294.md

File metadata and controls

38 lines (30 loc) · 560 Bytes

Consider the following PHP script:

 $fp = fopen('file.txt''r');
 $string1 = fgets($fp512);
 fseek($fp0);

Which of the following functions will give the same output as that given by the fseek() function in the above script?

  • A)
rewind()
  • B)
fgets()
  • C)
fgetss()
  • D)
file()
Answer

Answer: A