Tagged Questions
The filegetcontent tag has no wiki summary.
6
votes
7answers
16k views
How to get the content-type of a file in PHP?
I'm using PHP to send an email with an attachment. The attachment could be any of several different file types (pdf, txt, doc, swf, etc).
First, the script gets the file using "file_get_contents".
...
0
votes
2answers
40 views
file_get_contents full code with images, scripts
Is there any way to get full source code with images,scripts who is used in page... file_get_contents give only elements without images,script... What I need is when catch some URL (file_get_contents ...
0
votes
6answers
474 views
file_get_contents not getting the file contents?
I've used a simple file_get_contents function but that didn't get the actual contents (output) of that..
I could not figure the error!!!
Code:
<?php
// $url = $_GET['url'];
// $flv_http_path ...
0
votes
3answers
1k views
File-get-contents failed to open stream Unauthorized
I am trying to use file_get_contents.I have made sure that allow_url_fopen is enabled in php.ini. As of now it is telling me:
[function.file-get-contents]: failed to open stream: HTTP request failed! ...
0
votes
4answers
2k views
How to use PHP to get a webpage into a variable
I want to download a page from the web, it's allowed to do when you are using a simple browser like Firefox, but when I use "file_get_contents" the server refuses and replies that it understands the ...
-1
votes
3answers
2k views
Remove line breaks and new lines from PHP variable value?
I have a PHP script that does the following:
Uses file_get_contents() to get content of html file
Echos a JSON object
The issue is that the value obtained from file_get_contents is multi line. It ...