Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 601 - 620 из 3519.
Упорядочить по:
URL
|
дате изменения
601. xml_set_external_entity_ref_handler
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_set_external_entity_ref_handler -- set up external entity reference handler . int xml_set_external_entity_ref_handler ( int parser, string handler) . Sets the notation declaration handler function for the XML parser parser . handler is a string containing the name of a function that must exist when xml_parse() is called for parser . The function named by handler must accept five parameters, and should return an integer value. ... parser . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-external-entity-ref-handler.html -- 6.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
602. xml_parse
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_parse -- start parsing an XML document . int xml_parse ( int parser, string data [, int isFinal]) . ... A document may be parsed piece-wise by calling xml_parse() several times with new data, as long as the isFinal parameter is set and TRUE when the last data is parsed. isFinal (optional) . ... When the XML document is parsed, the handlers for the configured events are called as many times as necessary, after which this function returns TRUE or FALSE . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-parse.html -- 5.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
603. xml_set_unparsed_entity_decl_handler
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_set_unparsed_entity_decl_handler -- Set up unparsed entity declaration handler . int xml_set_unparsed_entity_decl_handler ( int parser, string handler) . Sets the unparsed entity declaration handler function for the XML parser parser . handler is a string containing the name of a function that must exist when xml_parse() is called for parser . ... If a handler function is set to an empty string, or FALSE , the handler in question is disabled. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-unparsed-entity-decl-handler.html -- 6.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
604. xml_set_notation_decl_handler
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_set_notation_decl_handler -- set up notation declaration handler . int xml_set_notation_decl_handler ( int parser, string handler) . Sets the notation declaration handler function for the XML parser parser . handler is a string containing the name of a function that must exist when xml_parse() is called for parser . ... NOTATION name { systemId | ... If a handler function is set to an empty string, or FALSE , the handler in question is disabled. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-notation-decl-handler.html -- 6.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
605. xml_set_default_handler
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_set_default_handler -- set up default handler . int xml_set_default_handler ( int parser, string handler) . Sets the default handler function for the XML parser parser . handler is a string containing the name of a function that must exist when xml_parse() is called for parser . The function named by handler must accept two parameters: handler ( int parser, string data) . parser . ... xml_set_unparsed_entity_decl_handler ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-default-handler.html -- 5.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
606. xml_set_processing_instruction_handler
PHP Manual . ... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_set_processing_instruction_handler -- Set up processing instruction (PI) handler . int xml_set_processing_instruction_handler ( int parser, string handler) . Sets the processing instruction (PI) handler function for the XML parser parser . ... target data ?> ... The function named by handler must accept three parameters: handler ( int parser, string target, string data) . ... xml_set_character_data_handler . ... xml_set_default_handler ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-processing-instruction-handler.html -- 6.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
607. xml_set_element_handler
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_set_element_handler -- set up start and end element handlers . int xml_set_element_handler ( int parser, string startElementHandler, string endElementHandler) . ... The function named by startElementHandler must accept three parameters: startElementHandler ( int parser, string name, array attribs) . parser . ... The third parameter, attribs , contains an associative array with the element's attributes (if any). ... Attribute values are not case-folded. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-element-handler.html -- 7.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
608. xml_set_character_data_handler
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_set_character_data_handler -- set up character data handler . int xml_set_character_data_handler ( int parser, string handler) . Sets the character data handler function for the XML parser parser . handler is a string containing the name of a function that must exist when xml_parse() is called for parser . The function named by handler must accept two parameters: handler ( int parser, string data) . parser . ... xml_set_element_handler . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-character-data-handler.html -- 5.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
609. xml_set_object
PHP Manual . ... PHP 4 >= 4.0.0) xml_set_object -- Use XML Parser within an object . ... This function allows to use parser inside object . ... php class xml { var $ parser ; function xml () { $this- parser = xml _ parser _create(); xml_set_object ($this- parser , $this); xml_set_element_handler ($this- parser , tag _open , tag _close ); xml _set_character_data_handler($this- parser , cdata ); } function parse($data) { xml _parse($this- parser ,$data); } function ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-set-object.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
610. xml_parser_create
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) xml_parser_create -- create an XML parser . int xml_parser_create ( [string encoding]) . encoding (optional) . Which character encoding the parser should use. The following character encodings are supported: . ISO-8859-1 (default) . US-ASCII . UTF-8 . This function creates an XML parser and returns a handle for use by other XML functions. Returns FALSE on failure. Prev . Home . Next . XML parser functions . Up . xml_set_object
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.xml-parser-create.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
611. WDDX Functions
... Example 1. ... php print wddx_serialize_value("PHP to WDDX packet example", "PHP packet"); ?> ... wddxPacket version='1.0'><header comment='PHP packet'/><data> <string>PHP to WDDX packet example</string></data></wddxPacket> . ... php $pi = 3.1415926; $packet_id = wddx_packet_start("PHP"); wddx_add_vars($packet_id, "pi"); /* Suppose $cities came from database */ $cities = array("Austin", "Novato", "Seattle"); wddx_add_vars($packet_id, "cities"); $packet = wddx_packet_end($packet_id); print $packet; ?...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.wddx.html -- 6.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
612. wddx_deserialize
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) wddx_deserialize -- Deserializes a WDDX packet . mixed wddx_deserialize ( string packet) . wddx_deserialize() takes a packet string and deserializes it. It returns the result which can be string, number, or array. Note that structures are deserialized into associative arrays. Prev . Home . Next . wddx_add_vars . Up . XML parser functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.wddx-deserialize.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
613. wddx_packet_end
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) wddx_packet_end -- Ends a WDDX packet with the specified ID . string wddx_packet_end ( int packet_id) . wddx_packet_end() ends the WDDX packet specified by the packet_id and returns the string with the packet. Prev . Home . Next . wddx_packet_start . Up . wddx_add_vars
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.wddx-packet-end.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
614. wddx_add_vars
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) wddx_add_vars -- Add variables to a WDDX packet with the specified ID . wddx_add_vars ( int packet_id, mixed name_var [, mixed ...]) . wddx_add_vars() is used to serialize passed variables and add the result to the packet specified by the packet_id . The variables to be serialized are specified in exactly the same way as wddx_serialize_vars() . Prev . Home . Next . wddx_packet_end . Up . wddx_deserialize
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.wddx-add-vars.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
615. wddx_serialize_vars
... 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) wddx_serialize_vars -- Serialize variables into a WDDX packet . string wddx_serialize_vars ( mixed var_name [, mixed ...]) . wddx_serialize_vars() is used to create a WDDX packet with a structure that contains the serialized representation of the passed variables. wddx_serialize_vars() takes a variable number of arguments, each of which can be either a string naming a variable or an array containing strings naming the variables or another array, etc. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.wddx-serialize-vars.html -- 4.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
616. wddx_packet_start
PHP Manual . Prev . Next . 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) wddx_packet_start -- Starts a new WDDX packet with structure inside it . int wddx_packet_start ( [string comment]) . Use wddx_packet_start() to start a new WDDX packet for incremental addition of variables. It takes an optional comment string and returns a packet ID for use in later functions. It automatically creates a structure definition inside the packet to contain the variables. ... wddx_packet_end ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.wddx-packet-start.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
617. wddx_serialize_value
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) wddx_serialize_value -- Serialize a single value into a WDDX packet . string wddx_serialize_value ( mixed var [, string comment]) . wddx_serialize_value() is used to create a WDDX packet from a single given value. It takes the value contained in var , and an optional comment string that appears in the packet header, and returns the WDDX packet. Prev . Home . Next . WDDX Functions . Up . wddx_serialize_vars
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.wddx-serialize-value.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
618. W32api functions
PHP Manual . Prev . Next . ... w32api_set_call_method -- Sets the calling method used . w32api_register_function -- Registers function function_name from library with PHP . w32api_invoke_function -- .. Invokes function funcname with the arguments passed after the function name . w32api_deftype -- .. Defines a type for use with other w32api_functions. w32api_init_dtype -- ; Creates an instance to the data type typename and fills it with the values val1, val2, the function . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.w32api.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
619. w32api_invoke_function
PHP Manual . Prev . Next . unknown) w32api_invoke_function -- .. Invokes function funcname with the arguments passed after the function name . mixed w32api_invoke_function ( string funcname) . Warning . ... 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. ... This function is currently not documented, only the argument list is available. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.w32api-invoke-function.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
620. w32api_init_dtype
PHP Manual . Prev . Next . PHP 4 CVS only) w32api_init_dtype -- ; Creates an instance to the data type typename and fills it with the values val1, val2, the function . resource w32api_init_dtype ( string typename, mixed val1, mixed val2) . ... 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. ... This function is currently not documented, only the argument list is available. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.w32api-init-dtype.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы