Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2001062

Re: [PHP] readfile + proxy From: Anon Y Mous (dropbox <email protected>)
Date: 06/24/01

Instead of using readfile(), try using the file() function.

// Get php.net and store it in an array.
$theFile = file("http://www.php.net");
// Convert the array to one long string.
$theFile = implode("",$theFile);
// And output the file.
echo $theFile;

If you're trying to do this with an image, you need to use the
Header() function.

JVD> How can I read some webpage through a proxy in PHP.
JVD> I wan't to use the function readfile(http://www.php.net/) but I get an
JVD> host_connect error.

JVD> --
JVD> A good programmer is someone who looks both ways before crossing a one-way
JVD> street. - Doug Linder

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>