Tagged Questions

8
votes
3answers
2k views

file_get_contents VS CURL, what has better performance?

I am using PHP to build a web crawler, to crawl millions of URLs, what is better for me in terms of performance?file_get_contents or CURL? Thanks
2
votes
1answer
60 views

Handling delays when retrieving files from remote server in PHP

Hello, I am working with PHP to access files and photos from remote servers. I am mostly using the file_get_contents() and copy() functions. Sometimes accessing a small text file or photo is almost …
2
votes
2answers
409 views

file_get_contents from url that is only accessible after log-in to website

I would like to make a php script that can capture a page from a website. Think *file_get_contents($url)*. However, this website requires that you fill in a username/password log-in form before you …
1
vote
4answers
85 views

PHP file_get_contents causes page to be inaccessible

Hi, I'm trying to use file_get_contents in php to display an RSS feed. However, when I try to load the page, it fails (as if waiting for something to complete). If I remove the code and save the file …
1
vote
3answers
182 views

Looping and file_get_contents in PHP

Hello, I have written a page that will scan a site and then extract certain code from the source. That part is working successfully, however I want to run this over multiple pages and dump the …
1
vote
4answers
201 views

file_get_contents with HTTP: No such file or directory

I'm trying to execute a straightforward PHP call to load the contents of a web page: $result = file_get_contents("http://www.google.com"); The result coming back is a strange file not found error: …
1
vote
1answer
461 views

PHP get url with special characters without urlencode:ing them!

Hi. I have a problem. I would like file_get_contents to get a url that looks like this: http://wapedia.mobi/sv/Gröt The problem is that it requests (can't post entire link, sorry): …
1
vote
4answers
444 views

Using file_get_contents or curl to url on same server

I have a PHP script that needs to process the same site's RSS feed. Specifically, I'm displaying the most recent blogs from the WordPress RSS feed on the home page. On our staging server it worked …
1
vote
3answers
181 views

Is it possible to split the file contents using a custom pattern?

Hello, Is it possible to split the contents of file into parts that have specific pattern? This is what I want to achieve: Read the file using file_get_contents Read only contents between similar …
1
vote
2answers
561 views

Loading a remote xml page with file_get_contents()

I have seen some questions similar to this on the internet, none with an answer. I want to return the source of a remote XML page into a string. The remote XML page, for the purposes of this …
0
votes
3answers
52 views

Checking a string against a pattern

I want to check posted content against a pattern. I am having trouble setting up this preg_match (or array?). The pattern being... TEXTHERE:TEXTHERE TEST:TEST FILE:FILE AND TEXTHERE:TEXTHERE …
0
votes
1answer
20 views

Ignore data within a certain set of characters with PHP

Not sure what this is called, but is there a way I can pull data from a file, echo it, but ignore data within a certain set of characters? <?php echo file_get_contents('test.txt'); ?> Would …
0
votes
2answers
32 views

Image doesn’t display using readfile / file_get_contents

if(preg_match('/^[a-zA-Z0-9]+\.(gif|jpe?g)$/',$row['filename'],$matches) && is_readable($row['filepath'].$row['filename'])){ echo header('Content-Type: image/'.$matches[1]); …
0
votes
3answers
62 views

file_get_contents() GET request not showing up on my webserver log

I've got a simple php script to ping some of my domains using file_get_contents(), however I have checked my logs and they are not recording any get requests. I have $result = …
0
votes
3answers
111 views

file_get_contents and file_put_contents with large files

Hi there! I'm trying to get file contents, replace some parts of it using regular expressions and preg_replace and save it to another file: $content = file_get_contents('file.txt', true); …

1 2 3 next
15 30 50 per page