|
Posted by NC on 10/25/05 21:22
typingcat@gmail.com wrote:
>
> Is it possible to read another web page in PHP?
Yes.
> If is ASP.NET, the code would be
> ------------
> WebRequest req=WebRequest.Create("http://www.microsoft.com");
> WebResponse res=req.GetResponse();
> StreamReader sr = new StreamReader(res.GetResponseStream());
> String Output=sr.ReadToEnd();
> Response.Write("The content is : " + Output);
> --------
>
> Would you please tell me the PHP equivalant of this code?
Prepare to be dazzled:
$output = readfile('http://www.microsoft.com');
echo 'The content is : ', $output;
That's it, really... No need to define three objects in order
to end up with a string. Nifty, huh?
Cheers,
NC
Navigation:
[Reply to this message]
|