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

В начало ] Пред. | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | След.В конец ]

Упорядочить по: URL  |  дате изменения
2541. Function Handling functions
... These functions all handle various operations involved in working with functions. ... call_user_func_array -- Call a user function given with an array of parameters . ... func_get_arg -- Return an item from the argument list . func_get_args -- Returns an array comprising a function's argument list . ... function_exists -- Return TRUE if the given function has been defined . get_defined_functions -- Returns an array of all defined functions . ... call_user_func_array ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.funchand.html -- 4.9 Кб -- 03.02.2002
Похожие документы

2542. register_shutdown_function
... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) register_shutdown_function -- Register a function for execution on shutdown . int register_shutdown_function ( string func) . ... The registered shutdown functions are called after the request has been completed (including sending any output buffers), so it is not possible to send output to the browser using echo() or print() , or retrieve the contents of any output buffers using ob_get_contents() . ... get_defined_functions . ... register_tick_function ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.register-shutdown-function.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2543. register_tick_function
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.3) register_tick_function -- Register a function for execution on each tick . void register_tick_function ( string func [, mixed arg]) . Registers the function named by func to be executed when a tick is called. Prev . Home . Next . register_shutdown_function . Up . unregister_tick_function
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.register-tick-function.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2544. function_exists
... Next . 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) function_exists -- Return TRUE if the given function has been defined . bool function_exists ( string function_name) . Checks the list of defined functions for function_name . Returns TRUE if the given function name was found, FALSE otherwise. if (function_exists('imap_open')) { echo "IMAP functions are available.<br>\n"; } else { echo "IMAP functions are not available.<br>\n"; } . ... get_defined_functions ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.function-exists.html -- 4.2 Кб -- 03.02.2002
Похожие документы

2545. get_defined_functions
... PHP 4 >= 4.0.4) get_defined_functions -- Returns an array of all defined functions . ... This function returns an multidimensional array containing a list of all defined functions, both built-in (internal) and user-defined. The internal functions will be accessible via $arr["internal"] , and the user defined ones using $arr["user"] (see example below). function myrow($id, $data) { return "<tr><th>$id</th><td>$data</td></tr>\n"; } $arr = get_defined_functions(); print_r($arr); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-defined-functions.html -- 4.8 Кб -- 03.02.2002
Похожие документы

2546. func_get_args
PHP Manual . ... PHP 4 >= 4.0.0) func_get_args -- Returns an array comprising a function's argument list . array func_get_args ( (void);) . Returns an array in which each element is the corresponding member of the current user-defined function's argument list. func_get_args() will generate a warning if called from outside of a function definition. <?php function foo() { $numargs = func_num_args(); echo "Number of arguments: $numargs<br>\n"; if ($numargs >= 2) { echo "Second argument is: " . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.func-get-args.html -- 4.5 Кб -- 03.02.2002
Похожие документы

2547. func_num_args
PHP Manual . ... Next . PHP 4 >= 4.0.0) func_num_args -- Returns the number of arguments passed to the function . int func_num_args ( (void);) . Returns the number of arguments passed into the current user-defined function. func_num_args() will generate a warning if called from outside of a user-defined function. <?php function foo() { $numargs = func_num_args(); echo "Number of arguments: $numargs\n"; } foo (1, 2, 3); // Prints 'Number of arguments: 3' ?> . ... func_get_args . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.func-num-args.html -- 4.1 Кб -- 03.02.2002
Похожие документы

2548. create_function
... PHP 4 ) create_function -- Create an anonymous (lambda-style) function . ... Example 1. ... function process($var1, $var2, $ farr ) { for ($f=0; $f count($ farr ); $f++) echo $ farr [$f]($var1,$var2). \n ; } // create a bunch of math functions $f1 = 'if ($a =0) { return b*a^2 = .$b*sqrt($a);} else { return false;}'; $f2 = return \ min(b^2+a, a^2,b) = \ .min(\$a*\$a+\$b,\$b*\$b+\$a); ; $f3 = 'if ($a 0 $b != 0) { return ln(a)/b = .log($a)/$b; } else { ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.create-function.html -- 8.5 Кб -- 03.02.2002
Похожие документы

2549. func_get_arg
PHP Manual . ... PHP 4 >= 4.0.0) func_get_arg -- Return an item from the argument list . ... Returns the argument which is at the arg_num 'th offset into a user-defined function's argument list. ... php function foo() { $numargs = func_num_args(); echo "Number of arguments: $numargs<br>\n"; if ($numargs >= 2) { echo "Second argument is: " . ... func_get_arg() may be used in conjunction with func_num_args() and func_get_args() to allow user-defined functions to accept variable-length argument lists. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.func-get-arg.html -- 4.7 Кб -- 03.02.2002
Похожие документы

2550. call_user_func_array
... mixed call_user_func_array ( string function_name [, array paramarr]) . ... function debug($var, $val) echo "***DEBUGGING\nVARIABLE: $var\nVALUE:"; if (is_array($val) || is_object($val) || is_resource($val)) print_r($val); else echo "\n$val\n"; echo "***\n"; } $c = mysql_connect(); $host = $HTTP_SERVER_VARS["SERVER_NAME"]; call_user_func_array ('debug', array("host", $host)); call_user_func_array ('debug', array("c", $c)); call_user_func_array ('debug', array("HTTP_POST_VARS", $HTTP_POST_VARS)); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.call-user-func-array.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2551. call_user_func
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) call_user_func -- Call a user function given by the first parameter . mixed call_user_func ( string function_name [, mixed parameter [, mixed .. Call a user defined function given by the function_name parameter. ... function barber ($type) { print "You wanted a $type haircut, no problem"; } call_user_func ('barber', "mushroom"); call_user_func ('barber', "shave"); . See also: call_user_func_array() , call_user_method() , call_user_method_array() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.call-user-func.html -- 4.1 Кб -- 03.02.2002
Похожие документы

2552. ftp_get_option
... unknown) ftp_get_option -- Retrieves various runtime behaviours of the current FTP stream. bool ftp_get_option ( resource stream, int option) . ... Returns the value on success or FALSE if the given option is not supposed. ... This function returns the value for the requested option from the specified FTP stream . ... FTP_TIMEOUT_SEC . ... Example 1. ftp_get_option() example . Get the timeout of the given FTP stream $timeout = ftp_get_option($conn_id, FTP_TIMEOUT_SEC); . ... ftp_set_option . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-get-option.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2553. ftp_set_option
... unknown) ftp_set_option -- Set miscellaneous runtime FTP options. bool ftp_set_option ( resource stream, int option, mixed value) . ... A warning message will be thrown if the option is not supported or the passed value doesn't match the expected value for the given option . ... The value parameter depends on which option parameter is chosen to be altered. ... Supported runtime FTP options . ... Set the network timeout down to 10 seconds ftp_set_option($conn_id, FTP_TIMEOUT_SEC, 10); . ... ftp_exec ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-set-option.html -- 5.0 Кб -- 03.02.2002
Похожие документы

2554. FTP functions
... php // set up basic connection $ conn_id = ftp _connect($ ftp _ server ); // login with username and password $login_result = ftp _login($ conn_id , $ ftp _user_name, $ ftp _user_pass); // check connection if ((!$ conn_id ) || (!$login_result)) { echo Ftp connection has failed! ; echo Attempted to connect to $ ftp _ server for user $ ftp _user_name ; die; } else { ... ftp_pwd -- Returns the current directory name . ... ftp_chdir -- Changes directories on a FTP server . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.ftp.html -- 7.7 Кб -- 03.02.2002
Похожие документы

2555. ftp_exec
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.3) ftp_exec -- Request execution of a program on the ftp server. bool ftp_exec ( resource stream, string command) . Sends a SITE EXEC command request to the ftp server. Returns FALSE if the request fails, returns the output of the command otherwise. Prev . Home . Next . ftp_quit . Up . ftp_set_option
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-exec.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2556. ftp_quit
. PHP Manual . Prev . Next . (3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) ftp_quit -- Closes an FTP connection . void ftp_quit ( resource ftp_stream) . ftp_quit() is an alias for ftp_close() . Prev . Home . Next . ftp_close . Up . ftp_exec
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-quit.html -- 3.2 Кб -- 03.02.2002
Похожие документы

2557. ftp_close
. PHP Manual . Prev . Next . (unknown) ftp_close -- Closes an FTP connection . void ftp_close ( resource ftp_stream) . Note: This function is only available in CVS. ftp_close() closes ftp_stream and releases the resource. You can't reuse this resource but have to create a new one with ftp_connect() . Prev . Home . Next . ftp_site . Up . ftp_quit
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-close.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2558. ftp_site
. PHP Manual . Prev . Next . (3.0.15 - 3.0.18 only, PHP 4 >= 4.0.0) ftp_site -- Sends a SITE command to the server. bool ftp_site ( resource ftp_stream, string cmd) . ftp_site() sends the command specified by cmd to the FTP server. SITE commands are not standardized, and vary from server to server. They are useful for handling such things as file permissions and group membership. Returns TRUE on success, FALSE on error. Prev . Home . Next . ftp_delete . Up . ftp_close
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-site.html -- 3.6 Кб -- 03.02.2002
Похожие документы

2559. ftp_delete
. PHP Manual . Prev . Next . (3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) ftp_delete -- Deletes a file on the ftp server. bool ftp_delete ( resource ftp_stream, string path) . ftp_delete() deletes the file specified by path from the FTP server. Returns TRUE on success, FALSE on error. Prev . Home . Next . ftp_rename . Up . ftp_site
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-delete.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2560. ftp_mdtm
PHP Manual . Prev . Next . 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) ftp_mdtm -- Returns the last modified time of the given file. int ftp_mdtm ( resource ftp_stream, string remote_file) . ftp_mdtm() checks the last-modified time for a file, and returns it as a UNIX timestamp. If an error occurs, or the file does not exist, -1 is returned. Note that not all servers support this feature. Returns a UNIX timestamp on success, or -1 on error. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ftp-mdtm.html -- 3.6 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | След.В конец ]

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