The file-get-contents tag has no wiki summary.
-1
votes
1answer
41 views
WARNING: file_get_contents
I'm use "theme check" plugin for develop my theme.
I'm getting following warning:
WARNING: file_get_contents was found in the file /path.php possible file operations.
Line 232: $photos = ...
2
votes
1answer
29 views
Check if page url exists (fast way - 1mio sites)
I have a list of Alexa top 1 million. I want to check which of those 1 million sites are sites that have page www.domain.com/pageNameUrl.
I tried
foreach($sites as $site){
$file_headers = ...
1
vote
4answers
52 views
PHP - Cannot access external URLs
I have recently upgraded my website's servers due to high amounts of traffic. On the new servers, some aspects of PHP seem to be broken. I have a very specific code that isn't working. However, due to ...
-1
votes
0answers
22 views
how to get xml specific contains as a string using php? [closed]
i am try to load contains from xml file:-
xml file:-
<teams>
<team_main value='Aus'>
<team_under value="under_18">
<team_player1 value="Jack" />
...
0
votes
0answers
26 views
Suppress warnings from file_get_contents() [duplicate]
i am working on a project ... i want to get file content of youtube url
i used this code :
$url = 'http://gdata.youtube.com/feeds/api/videos/'. urlencode($name).'?alt=json';
$json = ...
1
vote
1answer
35 views
PHP reading file into variable
I'm trying to store a txt file in a php variable, I have the functionality working already, but there's one issue I cant really wrap my head around.
I want to read the file using variables as the ...
1
vote
1answer
41 views
How do I check if a URL is exists in PHP, without following redirects?
I have a PHP script call notfound.php that get executed when my web site hits a 404, and it will try to create a valid URL based on some logic that I have written.
After I create a new URL I check if ...
-2
votes
1answer
30 views
Download a file via CURL with Cookies using php [closed]
I need to POST cookies.txt then download a page to a text file using CURL. This is my FGC example but apparently FGC is bad at cookies so I need CURL.
<?php
$file = file('source\1.txt');
...
1
vote
1answer
33 views
Using cURL instead of file_get_contents
My web host does not support file_get_contents for security reasons but does support the use of cURL. Can anyone tell me now I would convert this short code using curl? I've been trying for days with ...
-3
votes
1answer
43 views
file_get_contents to get youtube video url PHP [closed]
I can get a full page source with file_get_contents function on php. I want to get youtube video links with file_get_contents & preg_match functions. For example this link: ...
0
votes
1answer
37 views
Youtube video subscription username and email id usign php json
I have a code like this.
<?php
$data = file_get_contents('http://gdata.youtube.com/feeds/api/users/userid?alt=json');
$data = json_decode($data, true);
$stats_data = ...
0
votes
4answers
54 views
PHP - How to include a section of a site?
I want to include a section of one html document (X) in another one (Y).
There's:
<div id="cmform">
....
....
</div>
in html document X and I need to include it in a div in html ...
1
vote
1answer
25 views
How to find substring inside string generated from get_file_contents() on a CDR file
I've been working around a long time trying to solve this problem,
but no success until now.
I need to grab a string that is passed to a Keywork when saving a CDR file, but as far as I've tried, I ...
0
votes
1answer
33 views
issue with file_get_contents in json fetch
The following is from another question: Handling data in a PHP JSON Object:
$jsonurl = "http://search.twitter.com/trends.json";
$json = file_get_contents($jsonurl, 0, null, null);
...
0
votes
2answers
23 views
file_get_contents() from external sources
Today I uploaded a file to my server. Within that file I had echo file_get_contents('/anotherPage.php'); I was presuming that the method would only get the html of the document but the method not only ...
0
votes
4answers
37 views
Passing variable in a URL (php) & file_get_contents()
Is there a way to pass a variable in a URL with file_get_contents() and have file_get_contents() retrieve dynamic content that is based on the value of the variable passed?
For example, let's say I ...
0
votes
1answer
38 views
file_get_contents doesn't work with image WAMP php 5.3.13
echo file_get_contents("result.png");
allow_url_fopen = On
php 5.3.13 raw data
?PNG \0\0\0 IHDR\0\0\02\0\0\0f\0\0\0? ?P\0\0?IDATx^?y?]?u??????Rk
r??\\?\"?l??]?W
php 5.2.6(work ...
0
votes
1answer
44 views
PHP web page doesn't always get data from blockchain.info [closed]
This is the PHP code part in index.php:
<?php
$file1 = 'tilitiedot.txt';
$file2 = 'kurssitiedot.txt';
$file3 = 'aikatiedot.txt';
$last_run = file_get_contents($file3);
if(time() ...
-1
votes
5answers
53 views
PHP file_get_contents() and XML files [duplicate]
in PHP I want to load a XML file (as a text file) and show its content (as a text) on a screen. I have a simple XML in the form
<root> <parent>Parent text. </parent></root>
...
0
votes
1answer
30 views
file_get_contents() 'failed to open stream' error retrieving tweets
I am trying to create a simple script that will retrieve the last 5 feeds for a twitter user (in this instance the BBC)
It runs okay locally on my development server but once I upload this to a live ...
1
vote
1answer
34 views
Embed data in a page from a different website
I have a problem that I know many people must know the answer to, but I am afraid I am still a bit of a beginner with these things.
I have been asked to make data on of my pages on one of our sites, ...
1
vote
1answer
38 views
Delete text form textfile with php
I try to delete some texte in a text file.
The texte file is like that :
#MESSAGE
:0
* ^(To|cc).*fd.*
|/usr/bin/vacation fd
#monfiltreperso
:0
* ^From.*martial@gironde.com
Maildir/.repertorymoi
:0
...
0
votes
1answer
65 views
IMGUR API - Permission Denied
I am using the IMGUR API and I get the following error
Warning: file_get_contents(https://api.imgur.com/3/album/f0J59/images): failed to open stream: HTTP request failed! HTTP/1.1 403 Permission ...
0
votes
1answer
50 views
PHP cURL “CURLOPT_USERPWD” or best way to protect the API?
In php cURL usage, what actually is CURLOPT_USERPWD working? I can see in many examples, like:
curl_setopt($ch,CURLOPT_USERPWD,"my_username:my_password");
.. but how to do at the Server Side? What ...
0
votes
3answers
68 views
PHP Best way to pass big Arrays or Objects between different Sites/Servers?
I have 2 websites (2 different domains/servers) and i need to transfer data between them. Source Server will be having an Array/ Array Object. Then it needs to be delivered to another site. I do not ...
0
votes
2answers
55 views
How do I use the php function file_get_contents properly?
In a nutshell, I am loading a page into a browser and capturing the contents of a div id=content element into a variable named "contentOrig". A Javascript based editor loads and a user can modify the ...
0
votes
0answers
17 views
php file fail to be executed with file_get_contents() in json array
I return these data (second_img_url,third_img_url and file) in html file by jquery(ajax) but when this file finish_create.php comes, I found PHP script in it not executed at all.
$data=array(
...
0
votes
1answer
40 views
How do I resize an image with PHP using imagecopyresampled and then get the contents
I'm currently resizing an image and writing it to a file. I've since had the need to store it in Amazon so all I need is the contents of the resized image. Can this be done without first writing it ...
0
votes
1answer
24 views
skip 500 responses from looping file_get_contents
Here's the deal... I'm running a bunch of URL's through a foreach loop. Each URL will pass through fil_get_contents() but some will return 500 errors (expected), I want to skip/ignore any 500 errors, ...
3
votes
2answers
63 views
PHP Convert a big binary file to a readable file
I am having problems with this simple script...
<?php
$file = "C:\\Users\\Alejandro\\Desktop\\integers\\integers";
$file = file_get_contents($file, NULL, NULL, 0, 34359738352);
echo $file;
...
0
votes
1answer
33 views
PHP Need random location for file_get_contents not just one location
Here is part of my code. I'm having trouble making this part work where I need to get the contents of random locations. I know how to file_get_contents from a url but I need to get random url contents ...
-1
votes
0answers
9 views
Pulling Content with preg match [duplicate]
I'm trying to pull a div from another page and display it on mine. I've begun by using file_get_contents and setting that as a variable, then I have tried using different regular expressions to get ...
0
votes
0answers
48 views
file_put_contents & file_get_contents speed
I am executing two functions after each other.
function 1 executes a for loop 10 times and add some values which it retreives from another server to an array.
After this I retrieve an txt file with ...
1
vote
1answer
61 views
php fetching page using http post
I have to fetch exam results from the page http://cbseresults.nic.in/class1211/cbse122012.htm
Sampleroll number is 4623447.
They are using http post to post the form data.I wrote the following code to ...
0
votes
0answers
22 views
PHP fsockopen via proxy
Quick question.
I'm tring to use proxy with godaddy.com hosting, but it is allow only to use their own proxy.
So here is a question:
Is it possible to connect to proxy via another proxy using php
...
-5
votes
0answers
60 views
Get website content with PHP [closed]
I already used file_get_contents(), I tried this function:
private function url_get_contents($Url) {
if (!function_exists('curl_init')) {
die('CURL is not installed!');
}
$ch = ...
0
votes
1answer
24 views
How to use cookies on called remote page?
Ok I guess this question may be similar to other in the "remote cookies" kind, but I'm not sure that other answers I've read are applied to my case anyway, so here we go.
I have two applications, a ...
-1
votes
3answers
65 views
Get HTML tag contents using php
Basically i get the contents from a URL using php file_get_contents().
After getting the page source, i have to get the data from this part of the page source
<div class="span2 box-product" ...
0
votes
4answers
78 views
Parse Web Page content using PHP
I think it's simple question but I've done what I know and still not work. I want get output from this link :
...
0
votes
3answers
73 views
Grab image from url and save it, size is 0 bytes
I don't have curl installed.
It has been mentioned before that this code should work,
file_put_contents($target_path,file_get_contents($image));
but it doesn't for me, it puts the image with ...
1
vote
1answer
19 views
Get a substr of a long stream
I want to read only some finite characters of beginnings of some long streams, but file_get_contents does not support seek operations, and I must first read the whole stream to extract the desired ...
1
vote
1answer
38 views
Incorrect data fetched when using file_get_contents
I am trying to fetch a score from an api, i am calling it through a link which requires two inputs. The api compares the two phrase inputs and fetches a score of their similarity. So when i run the ...
1
vote
3answers
61 views
Fetching content from external website
Let's say I want to extract the current bitcoin exchange rate (in EUR) from the German exchange bitcoin.de and the value shall be fetched each time I visit my site (so no caching). I was able to ...
0
votes
1answer
32 views
HTTP_ACCESS returned when invoking file_get_contents (and also simple_html_dom)
I'm trying to get the contents of a page this way:
<?php
include_once 'simple_html_dom.php';
$opts = array('http' =>
array(
'method' => 'GET',
...
-1
votes
1answer
41 views
PHP script to download a website with its files [closed]
I need a PHP script that does something similar to the "Save Page As" button in Firefox or other browsers. That is: given a URL, it downloads the associated HTML file, but also the images and other ...
-1
votes
3answers
61 views
Retrieving contents of several files in directory PHP
I need to get the contents of several files within a directory but which is the best way of doing this?
I am using
$data = file_get_contents('./files/myfile.txt');
but I want every file without ...
0
votes
1answer
42 views
Undefined offset: 1 file_get_contents
I recently changed my server code does not work anymore while on my old server it works perfectly.
<?php
ini_set('display_errors', 1);
ini_set('error_reporting', E_ALL | E_STRICT);
$myid = ...
0
votes
3answers
45 views
get content inside html not working
I am trying to extract the html content from inside a website. I want only the content inside the tags.
//$validLink is a link with .htm extension, source code is rather large
//contains ...
0
votes
1answer
59 views
Use file_get_contents for connet to url with another server
Sorry for bad english. My website server ip cannot connect to my payment bank website and this script is:
$client = new nusoap_client('https://pgws.bpm.bankmellat.ir/pgwchannel/services/pgw?wsdl');
...
0
votes
1answer
25 views
file get contents request 400 graph api
When I do a request with file_get_contents(https://graph.facebook.com/xxxxxxxxx?access_token=xxxxxxxxxxxxxxxx) I get this result back.
A PHP Error was encountered
Severity: Warning
Message: ...


