|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-12 07:38 UTC] hholzgra@php.net
[2003-02-12 14:46 UTC] nicos@php.net
[2003-02-12 18:55 UTC] sniper@php.net
[2003-02-20 08:18 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 UTC |
Hello, I found a difference in German and English Documentation of function fsockopen(). The first Example in german version says: $fp = fsockopen ("www.example.com", 80, &$errno, &$errstr, 30); and this works fine ... The first Example in englisch version says: $fp = fsockopen ("www.example.com", 80, $errno, $errstr, 30); and this seem not to work in every case ... (Difference: $errno and $errstr are passed with by ref operator in german version)