Posted by M on 10/20/68 11:31
Gustav Wiberg wrote:
> Hi there!
>
> File_exists doesn't seem to work with URLs that point to another domain.
> What to use?
>
> $x = fopen(http://www.stammis.com/getstart.php);
> if file_exists($x) ....
> ....
> ????
file_exists() takes filename as parameter, not file pointer.
besides, spare the one http request and use @fopen() (@ will suppress
eventual warning), it will speed up your script.
[Back to original message]
|