fsockopen

(PHP 4, PHP 5, PHP 7)

fsockopen��һ���������ӻ���һ��Unix�׽�������

˵��

fsockopen ( string $hostname [, int $port = -1 [, int &$errno [, string &$errstr [, float $timeout = ini_get("default_socket_timeout") ]]]] ) : resource

��ʼ��һ���׽������ӵ�ָ��������hostname����

PHP֧�����µ��׽��ִ����������б� ��֧�ֵ��׽��ִ�������Socket Transports���б���Ҳ����ͨ��stream_get_transports()����ȡ�׽��ִ�����֧�����͡�

Ĭ������½�������ģʽ�����׽������ӡ���Ȼ�����ͨ��stream_set_blocking()����ת����������ģʽ��

stream_socket_client()��֮�dz����ƣ������ṩ�˸��ӷḻ�IJ������ã�����������ģʽ���ṩ�����ĵĵ����á�

����

hostname

�����װ��OpenSSL����ô��Ҳ��Ӧ���������������ַǰ����ӷ���Э��ssl://������tls://���Ӷ�����ʹ�û���TCP/IPЭ���SSL����TLS�Ŀͻ������ӵ�Զ��������

port

�˿ںš�����Ըò�����һ��-1�����ʾ��ʹ�ö˿ڣ�����unix://��

errno

��������˸ò�����holds the system level error number that occurred in the system-level connect() call��

���errno�ķ���ֵΪ0��������������ķ���ֵΪFALSE����ô������ô��������׽������ӣ�connect()������֮ǰ����������ʧ�ܵ�ԭ�����Ŀ����dz�ʼ���׽��ֵ�ʱ�����˴���

errstr

������Ϣ�����ַ�������Ϣ���ء�

timeout

�������ӵ�ʱ�ޣ���λΪ�롣

Note:

ע�⣺�����Ҫ�Խ������׽��ֻ����ϵĶ�д�������ò���ʱ����������ʱ�ޣ���ʹ��stream_set_timeout()��fsockopen()������ʱ�ޣ�timeout���IJ����������׽������ӵ�ʱ����Ч��

����ֵ

fsockopen()������һ���ļ������֮����Ա������ļ��ຯ�����ã����磺fgets()��fgetss()��fwrite()��fclose()����feof()�����������ʧ�ܣ�������FALSE��

�����쳣

���������hostname�����ɷ��ʣ������׳�һ�����漶��E_WARNING���Ĵ�����ʾ��

������־

�汾 ˵��
4.3.0 ��win32ϵͳ�������˶�ʱ�����ã�timeout��������֧�֡�
4.3.0 ��TCP/IPЭ��Ļ�����������SSL��TLS��

����

Example #1 fsockopen()������

<?php
$fp 
fsockopen("www.example.com"80$errno$errstr30);
if (!
$fp) {
    echo 
"$errstr ($errno)<br />\n";
} else {
    
$out "GET / HTTP/1.1\r\n";
    
$out .= "Host: www.example.com\r\n";
    
$out .= "Connection: Close\r\n\r\n";
    
fwrite($fp$out);
    while (!
feof($fp)) {
        echo 
fgets($fp128);
    }
    
fclose($fp);
}
?>

Example #2 ʹ��UDP����

�����������չʾ����ô�����Լ��Ļ�����ͨ��UDP�׽������ӣ��˿ں�13�����������ں�ʱ�䡣

<?php
$fp 
fsockopen("udp://127.0.0.1"13$errno$errstr);
if (!
$fp) {
    echo 
"ERROR: $errno - $errstr<br />\n";
} else {
    
fwrite($fp"\n");
    echo 
fread($fp26);
    
fclose($fp);
}
?>

ע��

Note:

��Ϊ�����IJ�ͬ��ijЩ�������Unix�׽������ӻ����Զ����������������ʱ�ޣ�timeout�����ܲ�����Ч��

Warning

UDP�׽�����Щʱ���ڼ�ʹԶ������δ֪�������Ҳ�ܴ򿪣����Ҳ������κδ���ֻ�е���ͨ�����׽��ֽ��ж�д��ʱ��Żᷢ�ִ���֮���Ի�����������ΪUDP��һ��"������״̬"��Э�飬��ô�����ζ�ŵ�ǰ����ϵͳֱ�������׽��֣�������Ҫ���ͺͽ������ݵ�ʱ��Ż�ȥ����Ϊ��ȥ�������ӡ�

Note: ��ָ����ֵ�͵� IPv6 ��ַ������ fe80::1��ʱ�����÷����Ž� IP Χ����——���磬 tcp://[fe80::1]:80��

�μ�

  • pfsockopen() - ��һ���־õ��������ӻ���Unix�׽������ӡ�
  • stream_socket_client() - Open Internet or Unix domain socket connection
  • stream_set_blocking() - Ϊ��Դ������������������ģʽ
  • stream_set_timeout() - Set timeout period on a stream
  • fgets() - ���ļ�ָ���ж�ȡһ��
  • fgetss() - ���ļ�ָ���ж�ȡһ�в����˵� HTML ���
  • fwrite() - д���ļ����ɰ�ȫ���ڶ������ļ���
  • fclose() - �ر�һ���Ѵ򿪵��ļ�ָ��
  • feof() - �����ļ�ָ���Ƿ����ļ�������λ��
  • socket_connect() - ����һ���׽�������
  • The Curl extension