Lines Matching refs:fsockopen
2 Test fsockopen() function : basic functionality
5 echo "*** Testing fsockopen() : basic functionality ***\n";
24 echo "\nCalling fsockopen() with all possible arguments:\n";
25 $client = fsockopen($hostname, $port, $errno, $errstr, $timeout);
29 echo "\nCalling fsockopen() with mandatory arguments:\n";
30 $second_client = fsockopen($hostname, $port);
34 echo "\nCalling fsockopen() with address and port in same string:\n";
36 $third_client = fsockopen($address);
43 *** Testing fsockopen() : basic functionality ***
46 Calling fsockopen() with all possible arguments:
49 Calling fsockopen() with mandatory arguments:
52 Calling fsockopen() with address and port in same string: