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

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

Упорядочить по: URL  |  дате изменения
641. vpopmail_add_domain
PHP Manual . Prev . Next . PHP 4 >= 4.0.5) vpopmail_add_domain -- Add a new virtual domain . bool vpopmail_add_domain ( string domain, string dir, int uid, int gid) . Warning . This function is EXPERIMENTAL . 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. ... vpopmail_del_domain ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.vpopmail-add-domain.html -- 4.0 Кб -- 03.02.2002
Похожие документы

642. Variable Functions
... For information on how variables behave, see the Variables entry in the Language Reference section of the manual. ... empty -- Determine whether a variable is set . floatval -- Get float value of a variable . ... intval -- Get integer value of a variable . is_array -- Finds whether a variable is an array . ... is_numeric -- Finds whether a variable is a number or a numeric string . ... is_string -- Finds whether a variable is a string . ... strval -- Get string value of a variable . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.variables.html -- 7.1 Кб -- 03.02.2002
Похожие документы

643. is_callable
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) is_callable -- Find out whether the argument is a valid callable construct . bool is_callable ( mixed var [, bool syntax_only [, string callable_name]]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . var_export . Up . vpopmail functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-callable.html -- 3.5 Кб -- 03.02.2002
Похожие документы

644. var_export
PHP Manual . ... PHP 4 CVS only) var_export -- Outputs or returns a string representation of avariable . mixed var_export ( mixed expression [, int return]) . ... It is similar to var_dump() with the exception that the returned representation is valid PHP code. ... pre> <?php $a = array (1, 2, array ("a", "b", "c")); var_export ($a); /* output: array ( 0 => 1, 1 => 2, 2 => array ( 0 => 'a', 1 => 'b', 2 => 'c', ), ) */ $b = 3.1; $v = var_export($b, TRUE); echo $v; /* output: 3.1 */ ?> </pre> . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.var-export.html -- 4.2 Кб -- 03.02.2002
Похожие документы

645. var_dump
PHP Manual . ... 3.0.5 - 3.0.18 only, PHP 4 >= 4.0.0) var_dump -- Dumps information about a variable . ... This function returns structured information about one or more expressions that includes its type and value. ... pre> <?php $a = array (1, 2, array ("a", "b", "c")); var_dump ($a); /* output: array(3) { [0]=> int(1) [1]=> int(2) [2]=> array(3) { [0]=> string(1) "a" [1]=> string(1) "b" [2]=> string(1) "c" } } */ $b = 3.1; $c = TRUE; var_dump($b,$c); /* output: float(3.1) bool(true) */ ?>; </pre> . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.var-dump.html -- 4.4 Кб -- 03.02.2002
Похожие документы

646. unset
... destroy a single variable unset ($foo); // destroy a single element of an array unset ($bar['quux']); // destroy more than one variable unset ($foo1, $foo2, $foo3); . The behavior of unset() inside of a function can vary depending on what type of variable you are attempting to destroy. ... The variable in the calling environment will retain the same value as before unset() was called. function destroy_foo() { global $foo; unset($foo); } $foo = 'bar'; destroy_foo(); echo $foo; . ... bar . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.unset.html -- 7.4 Кб -- 03.02.2002
Похожие документы

647. unserialize
... The converted value is returned, and can be an integer , float , string , array or object . ... This example complements the one described // with function serialize /function . $conn = odbc_connect ( webdb , php , chicken ); $stmt = odbc_prepare ($conn, SELECT data FROM sessions WHERE id = ? ); $sqldata = array ($ PHP _AUTH_USER); if (!odbc_execute ($stmt, $sqldata) || !odbc_fetch_into ($stmt, $tmp)) { // if the execute or fetch fails, initialize to empty array $ session_data = ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.unserialize.html -- 6.8 Кб -- 03.02.2002
Похожие документы

648. strval
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strval -- Get string value of a variable . string strval ( mixed var) . Returns the string value of var . See the documentation on string for more information on converting to string. var may be any scalar type. You cannot use strval() on arrays or objects. See also floatval() , intval() , settype() and Type juggling . Prev . Home . Next . settype . Up . unserialize
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.strval.html -- 3.9 Кб -- 03.02.2002
Похожие документы

649. settype
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) settype -- Set the type of a variable . bool settype ( mixed var, string type) . ... boolean" (or, since PHP 4.2.0, "bool") . integer" (or, since PHP 4.2.0, "int") . float" (only possible since PHP 4.2.0, for older versions use the deprecated variant "double") . string" . ... foo = "5bar"; // string $bar = true; // boolean settype($foo, "integer"); // $foo is now 5 (integer) settype($bar, "string"); // $bar is now "1" (string) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.settype.html -- 4.8 Кб -- 03.02.2002
Похожие документы

650. serialize
PHP Manual . ... string serialize ( mixed value) . ... We use serialize() to store // it in a database at the end of the request. $conn = odbc_connect ("webdb", "php", "chicken"); $stmt = odbc_prepare ($conn, "UPDATE sessions SET data = ? WHERE id = ?"); $sqldata = array (serialize($session_data), $PHP_AUTH_USER); if (!odbc_execute ($stmt, &$sqldata)) { $stmt = odbc_prepare($conn, "INSERT INTO sessions (id, data) VALUES(?, ?)"); if (!odbc_execute($stmt, &$sqldata)) { /* Something went wrong. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.serialize.html -- 5.5 Кб -- 03.02.2002
Похожие документы

651. print_r
PHP Manual . ... PHP 4 >= 4.0.0) print_r -- Prints human-readable information about a variable . ... pre> <?php $a = array ('a' => 'apple', 'b' => 'banana', 'c' => array ('x','y','z')); print_r ($a); ?> </pre> . ... Note: Prior to PHP 4.0.4, print_r() will continue forever if given an array or object that contains a direct or indirect reference to itself. An example is print_r($GLOBALS) because $GLOBALS is itself a global variable that contains a reference to itself. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.print-r.html -- 5.9 Кб -- 03.02.2002
Похожие документы

652. isset
PHP Manual . Prev . Next . unknown) isset -- Determine whether a variable is set . ... Returns TRUE if var exists; FALSE otherwise. If a variable has been unset with unset() , it will no longer be isset() . isset() will return FALSE if testing a variable that has been set to NULL . Also note that a NULL byte ( "\0" ) is not equivalent to the PHP NULL constant. $a = "test"; echo isset ($a); // TRUE unset ($a); echo isset ($a); // FALSE $foo = NULL; print isset ($foo); // FALSE . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.isset.html -- 4.3 Кб -- 03.02.2002
Похожие документы

653. is_scalar
... PHP 4 >= 4.0.5) is_scalar -- Finds whether a variable is a scalar . ... Types array , object and resource or not scalar. function show_var($var) { if (is_scalar($var)) { echo $var; } else { var_dump($var); } } $pi = 3.1416; $proteins = array("hemoglobin", "cytochrome c oxidase", "ferredoxin"); show_var($pi); // prints: 3.1416 show_var($proteins) // prints: // array(3) { // [0]=> // string(10) "hemoglobin" // [1]=> // string(20) "cytochrome c oxidase" // [2]=> // string(10) "ferredoxin" // } . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-scalar.html -- 5.8 Кб -- 03.02.2002
Похожие документы

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

655. is_resource
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) is_resource -- Finds whether a variable is a resource . bool is_resource ( mixed var) . is_resource() returns TRUE if the variable given by the var parameter is a resource , otherwise it returns FALSE . See the documentation on the resource -type for more information. Prev . Home . Next . is_real . Up . is_scalar
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-resource.html -- 3.6 Кб -- 03.02.2002
Похожие документы

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

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

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

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

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

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

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