Tagged Questions
The file-get-contents tag has no wiki summary.
49
votes
5answers
26k 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.
20
votes
2answers
13k views
How to post data in PHP using file_get_contents?
I am using PHP's function file_get_contents() to fetch contents of a URL and then I process headers through the variable $http_response_header. Now the problem is that some of the URLs need some data ...
8
votes
6answers
13k views
file_get_contents with https?
I'm working on setting up credit card processing and needed to use a workaround for CURL, and the following code worked fine when I was using the test server (which wasn't calling an SSL URL), but now ...
7
votes
1answer
1k views
File_get_contents not working?
I am using cakephp. I am trying get data from facebook using file_get_contents. I get a warning.
Warning (2): file_get_contents()
[function.file-get-contents]: URL
file-access is disabled in ...
4
votes
3answers
71 views
is PHP's file_get_contents memory and data efficient?
I'm making a push notification server that gathers specific data from an external (third-party) html page, if I know the information I need is within the first e.g. 5000 characters, will PHP actually ...
4
votes
4answers
268 views
Global error handling of file_get_contents() PHP
Hey guys,
so I'm occasionally getting errors while using file_get_contents and its used a fair bit in my script. I know I can suppress errors individually with @file_get_contents and that I can set ...
4
votes
3answers
600 views
using file get contents or curl
I was ask to use a simple facebook api to return the number of likes or shares at work which return json string.
Now since i am going to do this for a very large amount of links, which one is better:
...
4
votes
1answer
286 views
Perl equivalent of PHP's get_file_contents()?
The following PHP code does exactly what I want to do. The problem is I need to re-create it in Perl and I've been playing around with the open() and sysopen() Perl functions but can't do it. Does ...
4
votes
7answers
4k views
Faster alternative to file_get_contents()
Currently I'm using file_get_contents() to submit GET data to an array of sites, but upon execution of the page I get this error:
Fatal error: Maximum execution time of 30 seconds exceeded
All I ...
3
votes
3answers
62 views
Grab text between specific tags in PHP file
Sorry if this question has already been answered elsewhere. I looked through stack overflow and couldn't find exactly what I was looking for.
I need to know how to scan multiple php files in a ...
3
votes
2answers
42 views
is it possible to make a proxy with file_get_contents() or cURL?
I've just been messing around with file_get_contents() at school and have noticed, it allows me to open websites in school, that are blacklisted.
Only a few issues:
No images load
clicking a link ...
3
votes
3answers
98 views
Resizing image in php after file_get_contents
Can anybody tell me how I can solve the following issue:
include('php/resizeImage.php');
if($_POST['uploadlink']){
$url = $_POST['uploadlink'];
$urlImage = file_get_contents($url);
if ...
3
votes
6answers
288 views
CURL or file_get_contents to update a list of feeds?
I am running a feed reader site, where there will be a lot of RSS around. I will have to synchronize those feeds as often as possible, so I found these two methods of doing it.
1 method : Using CURL
...
3
votes
2answers
139 views
Best way to handle cross server php includes
This is a 2 part question...
1) Does file_get_contents create server load? I am using it a solid 3+ times in my blogs sidebar to pull out advertisements through my blog network, but now the network ...
3
votes
6answers
138 views
Long URLs with more than 4095 characters in php
$url = "http://example.com/............."
The $url has about more than 4095 characters .
I need to access this URL in php, but if I use file or file_get_contents, it returns an error
How can i ...
3
votes
2answers
906 views
Upload a file using file_get_contents
I realise I can do this with CURL very easily, but I was wondering if it was possible to use file_get_contents() with the http stream context to upload a file to a remote web server, and if so, how?
3
votes
2answers
1k views
PHP file_get_contents ignoring timeout?
$url = 'http://a.url/i-know-is-down';
//ini_set('default_socket_timeout', 5);
$ctx = stream_context_create(array(
'http' => array(
'timeout' => 5,
'ignore_errors' => ...
3
votes
3answers
734 views
file_get_contents not working for local files
I recently upgraded my XAMPP from PHP 5.2 to 5.3.1
I seem to be having a problem with file_get_contents().
I can use the function to get something like "http://www.google.com", but it times out when ...
3
votes
1answer
997 views
does PHP 5.3 change the way file_get_contents works?
I'm having an odd issue with PHP's file_get_contents.
In the past, file_get_contents on a remote file returns the text of that file regardless of the HTTP status code returned. If I hit an API and it ...
3
votes
2answers
1k views
PHP file_get_contents() behaves differently to browser
I'm trying to download the contents of a web page using PHP.
When I issue the command:
$f = file_get_contents("http://mobile.mybustracker.co.uk/mobile.php?searchMode=2");
It returns a page that ...
3
votes
1answer
187 views
Handling delays when retrieving files from remote server in PHP
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 ...
3
votes
2answers
3k 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 ...
3
votes
3answers
12k views
php: file_get_contents encoding problem (SOLVED)
SOLVED by changing the encoding in header() function to KOI8-R
header('Content-Type: text/plain; charset=KOI8-R');
My task is simple: make a post request to translate.google.com and get the ...
2
votes
1answer
87 views
PHP include vs file_get_contents
So I've been using file_get_contents to request a file via a plugin for Wordpress I distribute to other users.
Anyway originally what I was doing was checking to see if the user has 'allow_url_fopen' ...
2
votes
3answers
73 views
Weird file_get_contents() options
We are currently performing searches on a Database and returning results in JSON format to use on a Google Maps. The file that we call is named getvenues.php and works great on the server. It accepts ...
2
votes
1answer
96 views
file_get_contents or fopen for reading several MB of php://input?
This might seem to be a repeated question, but it is not: I receive several megabytes of data via php:/input (1-500mb) that I have to save in a file. Is more perfomance-wise (server load, speed) ...
2
votes
4answers
118 views
PHP get the site that calls your script via file_get_contents
I have a PHP script hosted on my site that outputs a value based on the GET parameters passed.
Other sites call this script from within their own PHP scripts via the PHP function file_get_contents ...
2
votes
1answer
115 views
php: file_get_contents() work with CLI, but does not work when called on server (in page)
I am slightly baffled.
I am using the bit.ly PHP API to shorten some urls. This works fine on local host - but when I tried it on my server (php running in Apache), file_get_contents() returns an ...
2
votes
1answer
316 views
Why doesn't file_get_contents work?
Why does file_get_contents not work for me? In the test file code below, it seems that everyone's examples that I've searched for all have this function listed, but it never gets executed. Is this a ...
2
votes
2answers
403 views
Passing variables through GET for a file_get_contents - a different way
I have information stored in a session. But was I just found out, sessions don't work when you do file_get_contents().
So after some searching I thought of using this technic:
$cart = ...
2
votes
1answer
260 views
Get IP from a file_get_contents request
I have two pages, one sending a file_get_contents request:
$postdata = http_build_query( array('install' => 'true', 'url' => $_SERVER['SERVER_NAME'], 'key' => 'XXXXXXXXXXXX') );
$opts = ...
2
votes
1answer
228 views
Display Wordpress Sidebar on External Website
How to display wordpress sidebar information on an external php site.
Tried by iframe but, fails when clicking links in iframe; which loads page in iframe only. actually i would like to go wordpress ...
2
votes
3answers
141 views
get html of a page in php
i have been trying to get the source of a page in php using get_file_contents and curl unfortunately both methods are not working for me. I am trying to use any method that will get the source of this ...
2
votes
2answers
315 views
file_get_contents on a page that requires login
suppose the page that I want to get data from requires login...how can I use file_get_contents to acquire the data on that page?
2
votes
1answer
126 views
Perl command or module like Linux “file” command
I have a script that downloads files but these files do not have any information about them before they are downloaded. While writing for Linux I have just called qx{ 'file ' . $filename } to see if ...
2
votes
2answers
231 views
How do i call the css for the page that i get from file_get_content
I am using the following code
<div id="content"> <?php
$homepage = file_get_contents("www.yahoo.com");
echo $homepage;
?></div>
The page appears fine but its without the style ...
2
votes
2answers
411 views
PHP/YQL/GET: URL too long
I'm using YQL in PHP with file_get_contents to send a query. I'm using YQL for term extraction so my query contains a large amount of text. Unfortunately this renders the URL too long and returns an ...
2
votes
4answers
254 views
php file_put_contents … can't i append at beginning?
<?php
$file = 'people.txt';
// The new person to add to the file
$person = "John Smith\n";
// Write the contents to the file,
// using the FILE_APPEND flag to append the content to the end of the ...
2
votes
1answer
632 views
char limit with php file_get_contents() and Google Chart API?
the specific issue I am working on is enabling https with Google charts API, and a possible character limit when using php file_get_contents on a url string. Let me take you through what is going on. ...
2
votes
3answers
4k views
PHP ini file_get_contents external url
I use following PHP function:
file_get_contents('http://example.com');
Whenever I do this on a certain server, the result is empty. When I do it anywhere else, the result is whatever the page's ...
2
votes
1answer
208 views
get_file_contents not working on my server
I tested this script on another server and it worked fine. Do I have to set my php.ini file? And how?
<?php
ini_set('allow_url_fopen', 1);
if (!isset($_GET['url'])) {
exit();
}
echo ...
2
votes
1answer
157 views
Sanitize file_get_contents
I want to use file_get_contents to implement a proxy so I can do ajax cross domain requests.
Querystring will be used to supply the URL to file_get_contents. Now the problem is people can muck ...
2
votes
5answers
3k views
HTTP request failed! HTTP/1.1 505 HTTP Version Not Supported error
I'm trying to use file_get_contents() to get the response from a server and this error was encountered. Could someone tell me what is the reason and how to fix it? The portion of the code is:
$api = ...
2
votes
4answers
2k views
PHP get external page content
i get the html from another site with file_get_contens, my question is how can i get a specific tag value?
let's say i have:
<div id="global"><p ...
2
votes
2answers
113 views
PHP File Downloading Questions
I am currently running into some problems with user's downloading a file stored on my server. I have code set up to auto download a file once the user hits the download button. It is working for all ...
2
votes
1answer
625 views
Getting character count for each row in text doc with Powershell
I am trying to get the character count for each row in a text doc. The contents of my text doc are:
1
15
69
124
300
I've been trying variants of the PS script:
get-content c:\serverlist.txt | ...
2
votes
1answer
2k views
PHP get url with special characters without urlencode:ing them!
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): ...wapedia.mobi/sv/Gr%C3%B6t which you ...
2
votes
6answers
2k 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 ...
2
votes
6answers
14k views
file-get-contents() returning “failed to open stream: HTTP request failed!”
Help,
I am having problems calling a url from PHP code. I need to call a service using a querystring from my PHP code. If I type the url into a browser, it works ok, but if I use file-get-contents() ...
2
votes
2answers
6k 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 ...