Ask a Question related to PHP Development, Design and Development.
-
David de Kloet #1
Re: url fopen
On Thu, 26 Jun 2003, R. Rajesh Jeba Anbiah wrote:
<snip>> David de Kloet <dskloet@cs.vu.nl> wrote in message news:<Pine.GSO.4.53.0306252110030.13163@keg.cs.vu. nl>...>> > Hi,
> >
> > I want to fopen an image over http, but only if it exists. Is there a way
> > to find out whether it exists? Or is there a way to check wether the fopen
> > call failed without getting the error message of fopen in my web page?
> function IsValidURL($url)
> {
> $fp = @fopen($url, "r");
Thanks, I see it is the @ doing the trick. Does the @ mean exactly "don't
print errors in my webpage" or is it different?
David
David de Kloet Guest
-
using an array with FOPEN?
I have set up an array that contains the elemtns within my xml doc I am writing to file. While making this more effieciant it complains this:... -
fopen
Hi I am writing to a file different sources. The one writes the date and the next starts writing data. The date writes fine. $header =... -
file() and fopen()
Hi All. $array = file ('http://www.google.de/search?q=expression'); $something = fopen( 'http://www.google.de/search?q=expression', "r"); In... -
Help Please in using fopen in PHP
Hi Folks, I am currently learning php and Mysql a scripting language and DB i just feel in love with. I am currently having problem in opening... -
4.3.2 fopen() problem/limit?
I just upgraded to 4.3.2 and one of my scripts will not work now. The script basically used fopen to get a file, then it would write it to a...



Reply With Quote

