Tagged Questions

2
votes
4answers
81 views

How to retrieve data and not entire lines in C?

Hi, Right now I use: char record[BUFLEN]; if(fgets(record, BUFLEN, fp) != NULL) { /* some code */ } to get lines from input like: city=Boston;name=Bob;a …
2
votes
5answers
159 views

Why is the `gets’ function is dangerous? Why should not be used?

When I try to compile C code that uses the gets function, I get a warning: warning: the gets function is dangerous and should not be used. I remember this has to do something with …
0
votes
2answers
60 views

Fgets in C++ repeats last line

I have program like (from link text) FILE* soubor; char buffer[100]; soubor = fopen("file","r"); string outp = ""; while (! feof(soubor)) { fgets(buffer,100,soubor); …
1
vote
6answers
527 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
266 views

Mimic Python’s strip() function in C

Hi all, I started on a little toy project in C lately and have been scratching my head over the best way to mimic the strip() functionality that is part of the python string object …
0
votes
2answers
175 views

Calling fgets() on popen() of ‘ssh’ is flushing the beginning of stdin of the calling process (ptty issue)

Hello, I have now whittled this down to a minimal test case. Thus far I have been able to determine that this is an issue related to pseudo-terminals which come about with the pi …
1
vote
2answers
212 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 …
0
votes
4answers
454 views

Difference between scanf() and fgets().

I want to know what is the difference between fgets() and scanf(). I am using C as my platform.
2
votes
5answers
420 views

convert a char* to std::string

I need to use std::string to store data retrieved by fgets(). To do this I need to convert fgets() char* output into an std::string to store in an array. How can this be done?
3
votes
1answer
218 views

Looping Fget with fsockopen in PHP 5.x

Hello, I have a Python Server finally working and responding to multiple command's with the output's, however I'm now having problem's with PHP receiving the full output. I have t …
1
vote
5answers
181 views

Communication problem between Java and C++ app on stdin

I have a java app here that starts a C++ app via the java.lang.Process API and then tries to send commands to it via the stdin pipe: process.getOutputStream().write("foo\n"); pro …
3
votes
8answers
760 views

Read a line of input faster than fgets?

I'm writing a program where performance is quite important, but not critical. Currently I am reading in text from a FILE* line by line and I use fgets to obtain each line. After us …
1
vote
5answers
244 views

Most efficient way to retrieve the source of a website through PHP? (GET Request)

I know that file_get_contents can be used to retrieve the source of a webpage, but I want to know the most efficient way. I have an old class I made a long time ago that uses som …
1
vote
2answers
118 views

Why does fgets hang on a certain url on wamp, but is fine on mamp?

I have a script that reads RSS feeds using fopen & fgets. When trying to the feed at: http://rss.fok.nl/feeds/nieuws my script hangs until the max_timeout of the PHP is reache …
1
vote
2answers
661 views

What is it about PHP’s fgets() that makes it so horrible on large files?

What is it about fgets() implementation that makes it so horrible on large files vs fread? To demonstrate, run this code: <?php $line = str_repeat('HelloWorld', 100000) . "\n" …

1 2 next
15 30 50 per page