Поиск по:oit.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера oit.cmc.msu.ru ,которые мы индексируем. Показаны документы 1621 - 1640 из 3520.
Упорядочить по:
URL
|
дате изменения
1621. syslog
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) syslog -- Generate a system log message . int syslog ( int priority, string message) . ... LOG_EMERG . ... LOG_ALERT . ... critical conditions . ... error conditions . ... LOG_PERROR, LOG_LOCAL0); // some code if (authorized_client()) { // do something } else { // unauthorized client! // log the attempt $access = date("Y/m/d H:i:s"); syslog(LOG_WARNING,"Unauthorized client: $access $REMOTE_ADDR ($HTTP_USER_AGENT)"); } closelog(); ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.syslog.html -- 6.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1622. Network Functions
... checkdnsrr -- Check DNS records corresponding to a given Internet host name or IP address . ... fsockopen -- Open Internet or Unix domain socket connection . gethostbyaddr -- Get the Internet host name corresponding to a given IP address . gethostbyname -- Get the IP address corresponding to a given Internet host name . gethostbynamel -- Get a list of IP addresses corresponding to a given Internet host name . getmxrr -- Get MX records corresponding to a given Internet host name . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/ref.network.html -- 6.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
1623. socket_set_blocking
... PHP 4 >= 4.0.0) socket_set_blocking -- Set blocking/non-blocking mode on a socket . int socket_set_blocking ( int socket descriptor, int mode) . If mode is FALSE , the given socket descriptor will be switched to non-blocking mode, and if TRUE , it will be switched to blocking mode. This affects calls like fgets() that read from the socket. In non-blocking mode an fgets() call will always return right away while in blocking mode it will wait for data to become available on the socket. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.socket-set-blocking.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
1624. socket_set_timeout
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) socket_set_timeout -- Set timeout period on a socket . bool socket_set_timeout ( int socket descriptor, int seconds, int microseconds) . ... Example 1. socket_set_timeout() Example . php $fp = fsockopen("www.php.net", 80); if(!$fp) { echo "Unable to open\n"; } else { fputs($fp,"GET / HTTP/1.0\n\n"); $start = time(); socket_set_timeout($fp, 2); $res = fread($fp, 2000); var_dump(socket_get_status($fp)); fclose($fp); print $res; } ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.socket-set-timeout.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1625. socket_get_status
... PHP 4 >= 4.0.0) socket_get_status -- Returns information about existing socket resource . array socket_get_status ( resource socket_get_status) . Returns information about an existing socket resource. Currently returns four entries in the result array: . timed_out (bool) - The socket timed out waiting for data . blocked (bool) - The socket was blocked . eof (bool) - Indicates EOF event . ... socket_set_blocking ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.socket-get-status.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1626. openlog
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) openlog -- Open connection to system logger . ... openlog() opens a connection to the system logger for a program. The string ident is added to each message. ... The option argument is used to indicate what loggin options will be used when generating a log message. ... Constant . ... When using multiple options you need to OR them, i.e. to open the connection immediately, write to the consoloe and include the PID in each message, you will use: LOG_CONS | ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.openlog.html -- 7.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
1627. pfsockopen
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) pfsockopen -- Open persistent Internet or Unix domain socket connection . int pfsockopen ( string hostname, int port [, int errno [, string errstr [, int timeout]]]) . This function behaves exactly as fsockopen() with the difference that the connection is not closed after the script finishes. It is the persistent version of fsockopen() . Prev . Home . Next . openlog . Up . socket_get_status
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.pfsockopen.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
1628. ip2long
... PHP 4 >= 4.0.0) ip2long -- Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address. int ip2long ( string ip_address) . The function ip2long() generates an IPv4 Internet network address from its Internet standard format (dotted string) representation. ... php $ip = gethostbyname("www.php.net"); $out = "The following URLs are equivalent:<br>\n"; $out .= "http://www.php.net/, http://".$ip."/, and http://".sprintf("%u",ip2long($ip))."/<br>\n"; echo $out; ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.ip2long.html -- 5.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
1629. long2ip
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) long2ip -- Converts an (IPv4) Internet network address into a string in Internet standard dotted format . string long2ip ( int proper_address) . The function long2ip() generates an Internet address in dotted format (i.e.: aaa.bbb.ccc.ddd) from the proper address representation. See also: ip2long() . Prev . Home . Next . ip2long . Up . openlog
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.long2ip.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
1630. getservbyname
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) getservbyname -- Get port number associated with an Internet service and protocol . int getservbyname ( string service, string protocol) . getservbyname() returns the Internet port which corresponds to service for the specified protocol as per /etc/services . protocol is either TCP or UDP . See also: getservbyport() . Prev . Home . Next . getprotobynumber . Up . getservbyport
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.getservbyname.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
1631. getservbyport
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) getservbyport -- Get Internet service which corresponds to port and protocol . string getservbyport ( int port, string protocol) . getservbyport() returns the Internet service associated with port for the specified protocol as per /etc/services. protocol is either TCP or UDP . See also: getservbyname() . Prev . Home . Next . getservbyname . Up . ip2long
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.getservbyport.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
1632. getprotobyname
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) getprotobyname -- Get protocol number associated with protocol name . int getprotobyname ( string name) . getprotobyname() returns the protocol number associated with the protocol name as per /etc/protocols. See also: getprotobynumber() . Prev . Home . Next . getmxrr . Up . getprotobynumber
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.getprotobyname.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1633. getprotobynumber
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) getprotobynumber -- Get protocol name associated with protocol number . string getprotobynumber ( int number) . getprotobynumber() returns the protocol name associated with protocol number as per /etc/protocols. See also: getprotobyname() . Prev . Home . Next . getprotobyname . Up . getservbyname
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.getprotobynumber.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1634. getmxrr
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) getmxrr -- Get MX records corresponding to a given Internet host name . int getmxrr ( string hostname, array mxhosts [, array weight]) . Searches DNS for MX records corresponding to hostname . Returns TRUE if any records are found; returns FALSE if no records were found or if an error occurred. ... See also checkdnsrr() , gethostbyname() , gethostbynamel() , gethostbyaddr() , and the named(8) manual page. ... gethostbynamel . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.getmxrr.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
1635. gethostbyname
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gethostbyname -- Get the IP address corresponding to a given Internet host name . string gethostbyname ( string hostname) . Returns the IP address of the Internet host specified by hostname . See also gethostbyaddr() . Prev . Home . Next . gethostbyaddr . Up . gethostbynamel
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.gethostbyname.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1636. gethostbynamel
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gethostbynamel -- Get a list of IP addresses corresponding to a given Internet host name . array gethostbynamel ( string hostname) . Returns a list of IP addresses to which the Internet host specified by hostname resolves. See also gethostbyname() , gethostbyaddr() , checkdnsrr() , getmxrr() , and the named(8) manual page. Prev . Home . Next . gethostbyname . Up . getmxrr
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.gethostbynamel.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
1637. fsockopen
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) fsockopen -- Open Internet or Unix domain socket connection . int fsockopen ( [string udp://hostname, int port [, int errno [, string errstr [, float timeout]]]]) . ... For the Internet domain, it will open a TCP socket connection to hostname on port port . ... 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($fp, 26); fclose($fp); } ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.fsockopen.html -- 8.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
1638. gethostbyaddr
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gethostbyaddr -- Get the Internet host name corresponding to a given IP address . string gethostbyaddr ( string ip_address) . Returns the host name of the Internet host specified by ip_address . If an error occurs, returns ip_address . See also gethostbyname() . Prev . Home . Next . fsockopen . Up . gethostbyname
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.gethostbyaddr.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1639. define_syslog_variables
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) define_syslog_variables -- Initializes all syslog related constants . void define_syslog_variables ( (void);) . Initializes all constants used in the syslog functions. See also openlog() , syslog() and closelog() . Prev . Home . Next . debugger_on . Up . fsockopen
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.define-syslog-variables.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
1640. closelog
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) closelog -- Close connection to system logger . int closelog ( (void);) . closelog() closes the descriptor being used to write to the system logger. The use of closelog() is optional. See also define_syslog_variables() , syslog() and openlog() . Prev . Home . Next . checkdnsrr . Up . debugger_off
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.closelog.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы