|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-22 05:30 UTC] edink@php.net
[2002-05-22 06:33 UTC] drnix at aha dot ru
[2002-06-23 01:00 UTC] php-bugs at lists dot php dot net
[2002-06-24 04:23 UTC] sniper@php.net
[2002-06-24 10:50 UTC] drnix at aha dot ru
[2002-06-24 11:24 UTC] sniper@php.net
[2002-06-25 03:03 UTC] drnix at aha dot ru
[2002-07-10 23:37 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 16:00:02 2025 UTC |
$ch = curl_init (); $fname = tempnam ("C:\\tmp", "rbc"); $fp = fopen ($fname, "w"); curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_PROXY, "proxy:8080"); curl_setopt ($ch, CURLOPT_FILE, $fp); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_setopt ($ch, CURLOPT_MUTE, 1); $result = curl_exec ($ch); curl_close ($ch); it's worked in PHP v4.0.6, 4.1.2 but not work in v4.2.0 No error messages output. Simple hangs up. Php installed from win32-binnary package