Tagged Questions

2
votes
3answers
192 views

What is a good way to recover from a fread() failure?

If a call to fread() returns 0 and ferror() indicates an error (vs. EOF), is it OK to retry the read or is it better to close and reopen the file? I can't start over entirely -- t …
1
vote
2answers
73 views

PHP SOAP fread() dynamic POST size

Looking to read the file size of the SOAP POST, any best practices? $data = fopen('php://input','rb'); $content = fread($data,5000); $dom = new DOMDocument(); $dom->loadXML($c …
1
vote
3answers
208 views

PHP fsockopen() / fread() returns messed up data

I read some URL with fsockopen() and fread(), and i get this kind of data: <li 10 ></li> <li 9f >asd</li> d <li 92 Which is …
1
vote
2answers
99 views

c++ fread changing fgetpos strangely

If I run: FILE* pFile = fopen("c:\\08.bin", "r"); fpos_t pos; char buf[5000]; int ret = fread(&buf, 1, 9, pFile); fgetpos(pFile, &pos); I get ret = 9 and pos = 9. Howe …
1
vote
2answers
220 views

PHP fgets() (or fread()) does not block.

Hello everybody, I'm trying to connect to a beanstalkd server through a PHP script and to reserve jobs from an existing queue. I'm using the fgets() function to get responses from …
1
vote
6answers
539 views

PHP - Returning the last line in a file?

I'm guessing it's fgets, but I can't find the specific syntax. I'm trying to read out (in a string I'm thinking is easier) the last line added to a log file.
1
vote
6answers
1k views

fread example from C++ Reference

I often use the website www.cplusplus.com as a reference when writing C code. I was reading the example cited on the page for fread and had a question. As an example they post: …
0
votes
2answers
26 views

does fread takes processing power / works with DMA ?

does fread takes processing power / works with DMA ? Assume that device on which file is residing has DMA support ?
0
votes
3answers
83 views

fread terminating mid-read at null values. Also reading in garbage past expected data.

I am reading in pieces of a binary file using a FILE object in C++. Here is the fseek and corresponding fread call: fseek(fp, startLocation, SEEK_SET); fread(data, m_sizeOfData, …
0
votes
1answer
62 views

PHP: Emailing HTML Body of PHP Template file

I'm currently using PHP's mail() function to email the HTML Body of another PHP file using concatenation. This is currently working fine, however, I would prefer the script to sim …
0
votes
5answers
348 views

PHP technique to query the APNs Feedback Server

Hi all, Can someone clarify what the APNs (Apple Push Notification) wants as far as how you query it? The docs say it starts sending as soon as the connection is made. Does this …
0
votes
4answers
686 views

Reading part of a file in C using fread() and fseek()

I'm trying to read a file into a buffer in blocks of size BLOCK_SIZE (currently equal to 1000 unsigned chars). My code first finds the number of blocks it will have to read in orde …
0
votes
2answers
146 views

Problem in fread and an EoF mark

For some reason, fread stoppes reading at a place in the file that contains 1A1A (raw bytes, ofcourse, not text). The file is open in "rb" mode, and it does skip 1A's, but not the …