Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 821 - 840 из 3519.
Упорядочить по:
URL
|
дате изменения
821. socket_bind
... PHP 4 >= 4.1.0) socket_bind -- Binds a name to a socket . int socket_bind ( resource socket, string address [, int port]) . ... The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk. socket_bind() binds the name given in address to the socket described by socket , which must be a valid socket descriptor created with socket_create() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.socket-bind.html -- 5.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
822. socket_accept
... PHP 4 >= 4.1.0) socket_accept -- Accepts a connection on a socket . ... Once a successful connection is made, a new socket descriptor is returned, which may be used for communication. ... If socket has been made non-blocking using socket_set_blocking() or socket_set_nonblock() , an error code will be returned. The socket descriptor returned by socket_accept() may not be used to accept new connections. ... Returns a new socket descriptor on success, or a negative error code on failure. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.socket-accept.html -- 5.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
823. SNMP functions
... Next . In order to use the SNMP functions on Unix you need to install the UCD SNMP package. ... Important: In order to use the UCD SNMP package, you need to define NO_ZEROLENGTH_COMMUNITY to 1 before compiling it. ... snmpget -- Fetch an SNMP object . ... snmpwalk -- Fetch all the SNMP objects from an agent . ... snmp_set_quick_print -- Set the value of quick_print within the UCD SNMP library. snmprealwalk -- Return all objects including their respective object id withing the specified one . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.snmp.html -- 4.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
824. snmprealwalk
. PHP Manual . Prev . Next . (3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) snmprealwalk -- Return all objects including their respective object id withing the specified one . array snmprealwalk ( string host, string community, string object_id [, int timeout [, int retries]]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . snmp_set_quick_print . Up . Socket functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.snmprealwalk.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
825. snmp_set_quick_print
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) snmp_set_quick_print -- Set the value of quick_print within the UCD SNMP library. void snmp_set_quick_print ( bool quick_print) . ... This means that just the value will be printed. When quick_print is not enabled (default) the UCD SNMP library prints extra information including the type of the value (i.e. IpAddress or OID). ... The first value printed might be: 'Timeticks: (0) 0:00:00.00', whereas with quick_print enabled, just '0:00:00.00' would be printed. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.snmp-set-quick-print.html -- 4.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
826. snmpwalkoid
... array snmpwalkoid ( string hostname, string community, string object_id [, int timeout [, int retries]]) . Returns an associative array with object ids and their respective object value starting from the object_id as root and FALSE on error. snmpwalkoid() function is used to read all object ids and their respective values from an SNMP agent specified by the hostname. ... A NULL object_id is taken as the root of the SNMP objects tree and all objects under that tree are returned as an array. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.snmpwalkoid.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
827. snmp_get_quick_print
PHP Manual . Prev . Next . 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) snmp_get_quick_print -- Fetch the current value of the UCD library's quick_print setting . ... Returns the current value stored in the UCD Library for quick_print. quick_print is off by default. $quickprint = snmp_get_quick_print(); . Above function call would return FALSE if quick_print is off, and TRUE if quick_print is on. snmp_get_quick_print() is only available when using the UCD SNMP library. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.snmp-get-quick-print.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
828. snmpwalk
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) snmpwalk -- Fetch all the SNMP objects from an agent . array snmpwalk ( string hostname, string community, string object_id [, int timeout [, int retries]]) . Returns an array of SNMP object values starting from the object_id() as root and FALSE on error. snmpwalk() function is used to read all the values from an SNMP agent specified by the hostname . ... Above function call would return all the SNMP objects from the SNMP agent running on localhost. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.snmpwalk.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
829. snmpset
... 3.0.12 - 3.0.18 only, PHP 4 >= 4.0.0) snmpset -- Set an SNMP object . bool snmpset ( string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]]) . Sets the specified SNMP object value, returning TRUE on success and FALSE on error. The snmpset() function is used to set the value of an SNMP object specified by the object_id . SNMP agent is specified by the hostname and the read community is specified by the community parameter. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.snmpset.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
830. snmpget
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) snmpget -- Fetch an SNMP object . string snmpget ( string hostname, string community, string object_id [, int timeout [, int retries]]) . ... The snmpget() function is used to read the value of an SNMP object specified by the object_id . SNMP agent is specified by the hostname and the read community is specified by the community parameter. $syscontact = snmpget("127.0.0.1", "public", "system.SysContact.0"); . ... SNMP functions . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.snmpget.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
831. Shockwave Flash functions
PHP Manual . ... PHP offers the ability to create Shockwave Flash files via Paul Haeberli's libswf module. ... Once you've successfully installed PHP with Shockwave Flash support you can then go about creating Shockwave files from PHP. ... swf_closefile -- Close the current Shockwave Flash file . swf_labelframe -- Label the current frame . ... swf_defineline -- Define a line . ... swf_definefont -- Defines a font . ... swf_perspective -- Define a perspective projection transformation . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.swf.html -- 13.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
832. swf_rotate
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) swf_rotate -- Rotate the current transformation . void swf_rotate ( float angle, string axis) . The swf_rotate() rotates the current transformation by the angle given by the angle parameter around the axis given by the axis parameter. Valid values for the axis are 'x' (the x axis), 'y' (the y axis) or 'z' (the z axis). Prev . Home . Next . swf_translate . Up . swf_posround
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-rotate.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
833. swf_posround
PHP Manual . ... Next . PHP 4 >= 4.0.0) swf_posround -- Enables or Disables the rounding of the translation when objects are placed or moved . ... The swf_posround() function enables or disables the rounding of the translation when objects are placed or moved, there are times when text becomes more readable because rounding has been enabled. The round is whether to enable rounding or not, if set to the value of 1, then rounding is enabled, if set to 0 then rounding is disabled. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-posround.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
834. swf_translate
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) swf_translate -- Translate the current transformations . void swf_translate ( float x, float y, float z) . The swf_translate() function translates the current transformation by the x , y , and z values given. Prev . Home . Next . swf_scale . Up . swf_rotate
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-translate.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
835. swf_scale
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) swf_scale -- Scale the current transformation . void swf_scale ( float x, float y, float z) . The swf_scale() scales the x coordinate of the curve by the value of the x parameter, the y coordinate of the curve by the value of the y parameter, and the z coordinate of the curve by the value of the z parameter. Prev . Home . Next . swf_popmatrix . Up . swf_translate
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-scale.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
836. swf_popmatrix
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) swf_popmatrix -- Restore a previous transformation matrix . void swf_popmatrix ( (void);) . The swf_popmatrix() function pushes the current transformation matrix back onto the stack. Prev . Home . Next . swf_pushmatrix . Up . swf_scale
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-popmatrix.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
837. swf_pushmatrix
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) swf_pushmatrix -- Push the current transformation matrix back unto the stack . void swf_pushmatrix ( (void);) . The swf_pushmatrix() function pushes the current transformation matrix back onto the stack. Prev . Home . Next . swf_lookat . Up . swf_popmatrix
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-pushmatrix.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
838. swf_lookat
PHP Manual . ... PHP 4 >= 4.0.0) swf_lookat -- Define a viewing transformation . void swf_lookat ( float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist) . The swf_lookat() function defines a viewing transformation by giving the viewing position (the parameters view_x , view_y , and view_z ) and the coordinates of a reference point in the scene, the reference point is defined by the reference_x , reference_y , and reference_z parameters. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-lookat.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
839. swf_polarview
... PHP 4 >= 4.0.0) swf_polarview -- Define the viewer's position with polar coordinates . void swf_polarview ( float dist, float azimuth, float incidence, float twist) . ... The dist parameter gives the distance between the viewpoint to the world space origin. The azimuth parameter defines the azimuthal angle in the x,y coordinate plane, measured in distance from the y axis. The incidence parameter defines the angle of incidence in the y,z plane, measured in distance from the z axis. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-polarview.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
840. swf_perspective
... PHP 4 >= 4.0.0) swf_perspective -- Define a perspective projection transformation . void swf_perspective ( float fovy, float aspect, float near, float far) . The swf_perspective() function defines a perspective projection transformation. The fovy parameter is field-of-view angle in the y direction. ... The near parameter is the near clipping plane and the far parameter is the far clipping plane. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.swf-perspective.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы