Feof with fsockopen

While working with file system, can feof be used with a file open by fsockopen?

Questions by tallman07

Showing Answers 1 - 6 of 6 Answers

rajanbhanot

  • Oct 12th, 2010
 

fsockopen() returns a file pointer which may be used together with the other file functions (such as fgets(), fgetss(), fwrite(), fclose(), and feof()). If the call fails, it will return FALSE.


So feof can be used with a file open by fsockopen

  Was this answer useful?  Yes

abc

  • Sep 12th, 2011
 

fsockopen() returns a file pointer which may be used together with the other file functions (such as fgets(), fgetss(), fwrite(), fclose(), and feof()). If the call fails, it will return FALSE.
So feof can be used with a file open by fsockopen

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions