|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-07-09 17:14 UTC] jason@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 07:00:01 2025 UTC |
Hello I'm using fsockopen on an url. $File is FALSE but errno is 0 and errstr empty Do I forget anything in my php configuration file? Best regards Niorj $File = fsockopen("toto",8080,&$errno , &$errstr ,$timeout=50); $Buffer = ""; if($File===FALSE) { $Buffer="$errstr ($errno)"; echo $Buffer; print_r($File); exit(); } else ....