XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.hcs.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.hcs.cmc.msu.ru ,которые мы индексируем. Показаны документы 3141 - 3160 из 3520.

В начало ] Пред. | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | След.В конец ]

Упорядочить по: URL  |  дате изменения
3141. array_keys
PHP Manual . ... PHP 4 >= 4.0.0) array_keys -- Return all the keys of an array . array array_keys ( array input [, mixed search_value]) . ... Example 1. array_keys() example . array = array (0 => 100, "color" => "red"); print_r(array_keys ($array)); $array = array ("blue", "red", "green", "blue", "blue"); print_r(array_keys ($array, "blue")); $array = array ("color" => array("blue", "red", "green"), "size" => array("small", "medium", "large")); print_r(array_keys ($array)); . ... Example 2. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-keys.html -- 5.5 Кб -- 03.02.2002
Похожие документы

3142. array_fill
... Next . PHP 4 CVS only) array_fill -- Fill an array with values . array array_fill ( int start_index, int num, mixed value) . array_fill() fills an array with num entries of the value of the value parameter, keys starting at the start_index parameter. Example 1. array_fill() example . a = array_fill(5, 6, 'banana'); . a now has the following entries using print_r() : . Array ( [5] => banana [6] => banana [7] => banana [8] => banana [9] => banana [10] => banana ) . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-fill.html -- 4.2 Кб -- 03.02.2002
Похожие документы

3143. array_intersect
PHP Manual . ... PHP 4 ) array_intersect -- Computes the intersection of arrays . array array_intersect ( array array1, array array2 [, array ...]) . array_intersect() returns an array containing all the values of array1 that are present in all the arguments. ... Example 1. array_intersect() example . array1 = array ("a" => "green", "red", "blue"); $array2 = array ("b" => "green", "yellow", "red"); $result = array_intersect ($array1, $array2); . ... Array ( [a] => green [0] => red ) . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-intersect.html -- 4.8 Кб -- 03.02.2002
Похожие документы

3144. array_flip
... PHP 4 >= 4.0.0) array_flip -- Flip all the values of an array . array array_flip ( array trans) . array_flip() returns an array in flip order, i.e. keys from trans become values and trans 's values become keys. ... If a value has several occurrences, the latest key will be used as its values, and all others will be lost. array_flip() returns FALSE if it fails. Example 1. array_flip() example . trans = array_flip ($trans); $original = strtr ($str, $trans); . ... now $trans is : . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-flip.html -- 5.2 Кб -- 03.02.2002
Похожие документы

3145. array_diff
PHP Manual . ... PHP 4 ) array_diff -- Computes the difference of arrays . array array_diff ( array array1, array array2 [, array ...]) . array_diff() returns an array containing all the values of array1 that are not present in any of the other arguments. ... Example 1. array_diff() example . array1 = array ("a" => "green", "red", "blue", "red"); $array2 = array ("b" => "green", "yellow", "red"); $result = array_diff ($array1, $array2); . This makes $result have array ("blue"); . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-diff.html -- 4.7 Кб -- 03.02.2002
Похожие документы

3146. array_filter
... PHP 4 >= 4.0.6) array_filter -- Filters elements of an array using a callback function . array array_filter ( array input [, mixed callback]) . ... Example 1. array_filter() example . function odd($var) { return ($var % 2 == 1); } function even($var) { return ($var % 2 == 0); } $array1 = array ("a"=>1, "b"=>2, "c"=>3, "d"=>4, "e"=>5); $array2 = array (6, 7, 8, 9, 10, 11, 12); echo "Odd :\n"; print_r(array_filter($array1, "odd")); echo "Even:\n"; print_r(array_filter($array2, "even")); . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-filter.html -- 4.9 Кб -- 03.02.2002
Похожие документы

3147. array_chunk
... PHP 4 CVS only) array_chunk -- Split an array into chunks . array array_chunk ( array input, int size [, bool preserve_keys]) . array_chunk() splits the array into several arrays with size values in them. ... If you specify FALSE new number indices will be used in each resulting array with indices starting from zero. ... Example 1. array_chunk() example . input_array = array('a', 'b', 'c', 'd', 'e'); print_r(array_chunk($input_array, 2)); print_r(array_chunk($input_array, 2, TRUE)); . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-chunk.html -- 5.2 Кб -- 03.02.2002
Похожие документы

3148. array_count_values
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) array_count_values -- Counts all the values of an array . array array_count_values ( array input) . array_count_values() returns an array using the values of the input array as keys and their frequency in input as values. Example 1. array_count_values() example . array = array (1, "hello", 1, "world", "hello"); print_r(array_count_values ($array)); . ... Array ( [1] => 2 [hello] => 2 [world] => 1 ) . ... array_chunk . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-count-values.html -- 4.1 Кб -- 03.02.2002
Похожие документы

3149. array_change_key_case
... PHP 4 CVS only) array_change_key_case -- Returns an array with all string keys lowercased or uppercased . array array_change_key_case ( array input [, int case]) . array_change_key_case() changes the keys in the input array to be all lowercase or uppercase. ... You can pass two constants there, CASE_UPPER and CASE_LOWER . ... Example 1. array_change_key_case() example . input_array = array("FirSt" => 1, "SecOnd" => 4); print_r(array_change_key_case($input_array, CASE_UPPER); . ... array . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array-change-key-case.html -- 4.4 Кб -- 03.02.2002
Похожие документы

3150. array
... Next . unknown) array -- Create an array . ... Note: array() is a language construct used to represent literal arrays, and not a regular function. ... When index is omitted, a integer index is automatically generated, starting at 0. ... Example 1. array() example . ... Array ( [0] => 1 [1] => 1 [2] => 1 [3] => 13 [4] => 1 [8] => 1 [9] => 19 ) Note that index '3' is defined twice, and keep its final value of 13. ... This example creates a 1-based array. Example 3. 1-based index with array() . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.array.html -- 6.6 Кб -- 03.02.2002
Похожие документы

3151. apache_setenv
. PHP Manual . Prev . Next . (PHP 4 CVS only) apache_setenv -- Set an Apache subprocess_env variable . int apache_setenv ( string variable, string value [, bool walk_to_top]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . apache_child_terminate . Up . Array Functions
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.apache-setenv.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3152. Apache-specific Functions
... Prev . Next . ... apache_lookup_uri -- Perform a partial request for the specified URI and return all info about it . apache_note -- Get and set apache request notes . ascii2ebcdic -- Translate string from ASCII to EBCDIC . ebcdic2ascii -- Translate string from EBCDIC to ASCII . ... virtual -- Perform an Apache sub-request . apache_child_terminate -- Terminate apache process after this request . ... Function Reference . ... apache_lookup_uri ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/ref.apache.html -- 4.0 Кб -- 03.02.2002
Похожие документы

3153. apache_child_terminate
PHP Manual . Prev . Next . PHP 4 >= 4.0.5) apache_child_terminate -- Terminate apache process after this request . string apache_child_terminate ( (void);) . apache_child_terminate() will terminate the Apache process executing the current PHP request once it is completed. It may be used to terminate a process after a script with high memory consumption has been run as memory will usually only be freed internally but not given back to the operating system. ... apache_setenv ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.apache-child-terminate.html -- 3.6 Кб -- 03.02.2002
Похожие документы

3154. virtual
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) virtual -- Perform an Apache sub-request . int virtual ( string filename) . virtual() is an Apache-specific function which is equivalent to <!--#include virtual...--> in mod_include. It performs an Apache sub-request. It is useful for including CGI scripts or .shtml files, or anything else that you would parse through Apache. Note that for a CGI script, the script must generate valid CGI headers. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.virtual.html -- 3.9 Кб -- 03.02.2002
Похожие документы

3155. ascii2ebcdic
. PHP Manual . Prev . Next . (3.0.17 - 3.0.18 only) ascii2ebcdic -- Translate string from ASCII to EBCDIC . int ascii2ebcdic ( string ascii_str) . ascii2ebcdic() is an Apache-specific function which is available only on EBCDIC based operating systems (OS/390, BS2000). It translates the ASCII encoded string ascii_str to its equivalent EBCDIC representation (binary safe), and returns the result. See also the reverse function ebcdic2ascii() . Prev . Home . Next . apache_note . Up . ebcdic2ascii
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.ascii2ebcdic.html -- 3.6 Кб -- 03.02.2002
Похожие документы

3156. ebcdic2ascii
. PHP Manual . Prev . Next . (3.0.17 - 3.0.18 only) ebcdic2ascii -- Translate string from EBCDIC to ASCII . int ebcdic2ascii ( string ebcdic_str) . ebcdic2ascii() is an Apache-specific function which is available only on EBCDIC based operating systems (OS/390, BS2000). It translates the EBCDIC encoded string ebcdic_str to its equivalent ASCII representation (binary safe), and returns the result. See also the reverse function ascii2ebcdic() . Prev . Home . Next . ascii2ebcdic . Up . getallheaders
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.ebcdic2ascii.html -- 3.6 Кб -- 03.02.2002
Похожие документы

3157. getallheaders
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) getallheaders -- Fetch all HTTP request headers . array getallheaders ( (void);) . This function returns an associative array of all the HTTP headers in the current request. Note: You can also get at the value of the common CGI variables by reading them from the environment, which works whether or not you are using PHP as an Apache module. ... Example 1. getallheaders() Example . ... This example will display all the request headers for the current request. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.getallheaders.html -- 4.5 Кб -- 03.02.2002
Похожие документы

3158. apache_lookup_uri
PHP Manual . Prev . Next . 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) apache_lookup_uri -- Perform a partial request for the specified URI and return all info about it . object apache_lookup_uri ( string filename) . This performs a partial request for a URI. It goes just far enough to obtain all the important information about the given resource and returns this information in a class. ... uri . ... Note: apache_lookup_uri() only works when PHP is installed as an Apache module. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.apache-lookup-uri.html -- 4.4 Кб -- 03.02.2002
Похожие документы

3159. apache_note
PHP Manual . ... Next . 3.0.2 - 3.0.18 only, PHP 4 >= 4.0.0) apache_note -- Get and set apache request notes . string apache_note ( string note_name [, string note_value]) . apache_note() is an Apache-specific function which gets and sets values in a request's notes table. If called with one argument, it returns the current value of note note_name . If called with two arguments, it sets the value of note note_name to note_value and returns the previous value of note note_name . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.apache-note.html -- 3.7 Кб -- 03.02.2002
Похожие документы

3160. Features
. PHP Manual . Prev . Next . Table of Contents . 15. Error Handling . 16. Creating and manipulating images . 17. HTTP authentication with PHP . 18. Cookies . 19. Handling file uploads . 20. Using remote files . 21. Connection handling . 22. Persistent Database Connections . 23. Safe Mode . Prev . Home . Next . Spotting References . Error Handling
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/features.html -- 3.6 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования