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

В начало ] Пред. | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | След.В конец ]

Упорядочить по: URL  |  дате изменения
661. is_integer
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) is_integer -- Alias of is_int() . This function is an alias of is_int() . Prev . Home . Next . is_int . Up . is_long
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-integer.html -- 3.2 Кб -- 03.02.2002
Похожие документы

662. is_int
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) is_int -- Find whether a variable is an integer . bool is_int ( mixed var) . Returns TRUE if var is an integer FALSE otherwise. Tip: To test if a variable is a number or a numeric string (such as form input, which is always a string), you must use is_numeric() . See also is_bool() , is_float() , is_integer() , is_numeric() , is_string() , is_array() , and is_object() . Prev . Home . Next . is_float . Up . is_integer
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-int.html -- 4.3 Кб -- 03.02.2002
Похожие документы

663. is_float
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) is_float -- Finds whether a variable is a float . bool is_float ( mixed var) . Returns TRUE if var is a float , FALSE otherwise. Tip: To test if a variable is a number or a numeric string (such as form input, which is always a string), you must use is_numeric() . See also is_bool() , is_int() , is_integer() , is_numeric() , is_string() , is_array() , and is_object() , . Prev . Home . Next . is_double . Up . is_int
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-float.html -- 4.2 Кб -- 03.02.2002
Похожие документы

664. is_bool
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) is_bool -- Finds out whether a variable is a boolean . bool is_bool ( mixed var) . Returns TRUE if the var parameter is a boolean . See also is_array() , is_float() , is_int() , is_integer() , is_string() , and is_object() . Prev . Home . Next . is_array . Up . is_double
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-bool.html -- 3.8 Кб -- 03.02.2002
Похожие документы

665. is_double
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) is_double -- Alias of is_float() . This function is an alias of is_float() . Prev . Home . Next . is_bool . Up . is_float
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-double.html -- 3.2 Кб -- 03.02.2002
Похожие документы

666. is_array
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) is_array -- Finds whether a variable is an array . bool is_array ( mixed var) . Returns TRUE if var is an array , FALSE otherwise. See also is_float() , is_int() , is_integer() , is_string() , and is_object() . Prev . Home . Next . intval . Up . is_bool
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-array.html -- 3.8 Кб -- 03.02.2002
Похожие документы

667. import_request_variables
... PHP 4 >= 4.1.0) import_request_variables -- Import GET/POST/Cookie variables into the global scope . bool import_request_variables ( string types [, string prefix]) . Imports GET/POST/Cookie variables into the global scope. ... Note: Although the prefix argument is optional, you will get a notice level error, if you specify no prefix, or specify an empty string as a prefix. ... This will import GET and POST vars // with an "rvar_" prefix import_request_variables("gP", "rvar_"); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.import-request-variables.html -- 4.9 Кб -- 03.02.2002
Похожие документы

668. intval
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) intval -- Get integer value of a variable . int intval ( mixed var [, int base]) . Returns the integer value of var , using the specified base for the conversion (the default is base 10). var may be any scalar type. You cannot use intval() on array s or object s. Note: The base argument for intval() has no effect unless the var argument is a string. See also floatval() , strval() , settype() and Type juggling . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.intval.html -- 4.3 Кб -- 03.02.2002
Похожие документы

669. get_defined_vars
PHP Manual . ... PHP 4 >= 4.0.4) get_defined_vars -- Returns an array of all defined variables . ... This function returns an multidimensional array containing a list of all defined variables , be them environment, server or user- defined variables . $b = array (1,1,2,3,5,8); $ arr = get_defined_vars (); // print $b print_r ($ arr [ b ]); // print path to the PHP interpreter (if used as a CGI) // e.g. /usr/local/bin/ php echo $ arr [ _ ]; // print the command-line paramaters if any ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-defined-vars.html -- 4.1 Кб -- 03.02.2002
Похожие документы

670. get_resource_type
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) get_resource_type -- Returns the resource type . string get_resource_type ( resource handle) . ... If the paramater is not a valid resource , it generates an error. $c = mysql_connect(); echo get_resource_type($c)."\n"; // prints: mysql link $fp = fopen("foo","w"); echo get_resource_type($fp)."\n"; // prints: file $doc = new_xmldoc("1.0"); echo get_resource_type($doc->doc)."\n"; // prints: domxml document . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-resource-type.html -- 4.0 Кб -- 03.02.2002
Похожие документы

671. gettype
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gettype -- Get the type of a variable . string gettype ( mixed var) . Returns the type of the PHP variable var . ... Never use gettype() to test for a certain type, since the returned string may be subject to change in a future version. ... double " (for historical reasons "double" is returned in case of a float , and not simply "float") . ... For PHP 4, you should use function_exists() and method_exists() to replace the prior usage of gettype() on a function. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gettype.html -- 6.1 Кб -- 03.02.2002
Похожие документы

672. floatval
. PHP Manual . Prev . Next . (PHP 4 CVS only) floatval -- Get float value of a variable . float floatval ( mixed var) . Returns the float value of var . Var may be any scalar type. You cannot use floatval() on arrays or objects. $var = '122.34343The'; $float_value_of_var = floatval ($var); print $float_value_of_var; // prints 122.34343 . See also intval() , strval() , settype() and Type juggling . Prev . Home . Next . empty . Up . gettype
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.floatval.html -- 4.0 Кб -- 03.02.2002
Похожие документы

673. empty
... unknown) empty -- Determine whether a variable is set . boolean empty ( mixed var) . Note: empty() is a language construct. This is the opposite of (boolean) var , except that no warning is generated when the variable is not set. See converting to boolean for more information. $var = 0; if (empty($var)) { // evaluates true echo '$var is either 0 or not set at all'; } if (!isset($var)) { // evaluates false echo '$var is not set at all'; } . ... See also isset() and unset() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.empty.html -- 4.4 Кб -- 03.02.2002
Похожие документы

674. doubleval
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) doubleval -- Alias of floatval() . This function is an alias of floatval() . Note: This alias is a left-over from a function-renaming. In older versions of PHP you'll need to use this alias of the floatval() function, because floatval() wasn't yet available in that version. Prev . Home . Next . Variable Functions . Up . empty
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.doubleval.html -- 3.7 Кб -- 03.02.2002
Похожие документы

675. urlencode
... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) urlencode -- URL-encodes string . ... It is encoded the same way that the posted data from a WWW form is encoded, that is the same way as in application/x-www-form-urlencoded media type. ... This function is convenient when encoding a string to be used in a query part of an URL, as a convenient way to pass variables to the next page: . Example 1. urlencode() example . ... Leave it as &, but simply encode your URLs using htmlentities() (urlencode($data)). ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.urlencode.html -- 6.1 Кб -- 03.02.2002
Похожие документы

676. URL Functions
. PHP Manual . Prev . Next . Table of Contents . base64_decode -- Decodes data encoded with MIME base64 . base64_encode -- Encodes data with MIME base64 . parse_url -- Parse a URL and return its components . rawurldecode -- Decode URL-encoded strings . rawurlencode -- URL-encode according to RFC1738 . urldecode -- Decodes URL-encoded string . urlencode -- URL-encodes string . Prev . Home . Next . sybase_select_db . Up . base64_decode
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.url.html -- 3.7 Кб -- 03.02.2002
Похожие документы

677. rawurlencode
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rawurlencode -- URL-encode according to RFC1738 . ... This is the encoding described in RFC1738 for protecting literal characters from being interpreted as special URL delimiters, and for protecting URL's from being mangled by transmission media with character conversions (like some email systems). For example, if you want to include a password in an FTP URL: . ... echo '<a href="ftp://user:', rawurlencode('foo @+%/'), '@ftp.my.com/x.txt">'; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.rawurlencode.html -- 5.0 Кб -- 03.02.2002
Похожие документы

678. urldecode
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) urldecode -- Decodes URL-encoded string . string urldecode ( string str) . ... Example 1. urldecode() example . a = explode('&', $QUERY_STRING); $i = 0; while ($i < count($a)) { $b = split('=', $a[$i]); echo 'Value for parameter ', htmlspecialchars(urldecode($b[0])), ' is ', htmlspecialchars(urldecode($b[1])), "<br />\n"; $i++; } . See also urlencode() , rawurlencode() , rawurldecode() . ... rawurlencode . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.urldecode.html -- 4.2 Кб -- 03.02.2002
Похожие документы

679. rawurldecode
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rawurldecode -- Decode URL-encoded strings . string rawurldecode ( string str) . Returns a string in which the sequences with percent ( % ) signs followed by two hex digits have been replaced with literal characters. ... foo%20bar%40baz decodes into . foo bar@baz . Note: rawurldecode() does not decode plus symbols ('+') into spaces. urldecode() does. See also rawurlencode() , urldecode() , urlencode() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.rawurldecode.html -- 4.2 Кб -- 03.02.2002
Похожие документы

680. base64_decode
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) base64_decode -- Decodes data encoded with MIME base64 . string base64_decode ( string encoded_data) . base64_decode() decodes encoded_data and returns the original data. The returned data may be binary. See also: base64_encode() , RFC2045 section 6.8. Prev . Home . Next . URL Functions . Up . base64_encode
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.base64-decode.html -- 3.5 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | След.В конец ]

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