Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 2661 - 2680 из 3519.
Упорядочить по:
URL
|
дате изменения
2661. diskfreespace
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) diskfreespace -- Alias of disk_free_space() . float diskfreespace ( string directory) . This is a deprecated alias of disk_free_space() . Use that function instead. Prev . Home . Next . disk_free_space . Up . disk_total_space
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.diskfreespace.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2662. dirname
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dirname -- Returns directory name component of path . string dirname ( string path) . Given a string containing a path to a file, this function will return the name of the directory. On Windows, both slash ( / ) and backslash ( \ ) are used as path separator character. ... Example 1. dirname() example . path = "/etc/passwd"; $file = dirname ($path); // $file is set to "/etc" . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dirname.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2663. disk_free_space
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) disk_free_space -- Returns available space in directory . float disk_free_space ( string directory) . Given a string containing a directory, this function will return the number of bytes available on the corresponding filesystem or disk partition. Example 1. disk_free_space() example . $df = disk_free_space("/"); // $df contains the number of bytes // available on "/" . Prev . Home . Next . dirname . Up . diskfreespace
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.disk-free-space.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2664. copy
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) copy -- Copies file . int copy ( string source, string dest) . Makes a copy of a file. Returns TRUE if the copy succeeded, FALSE otherwise. Example 1. copy() example . if (!copy($file, $file.'.bak')) { print ("failed to copy $file...<br>\n"); } . ... See also move_uploaded_file() , rename() , and the section of the manual about handling file uploads . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.copy.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2665. delete
. PHP Manual . Prev . Next . (unknown) delete -- A dummy manual entry . void delete ( string file) . This is a dummy manual entry to satisfy those people who are looking for unlink() or unset() in the wrong place. See also: unlink() to delete files, unset() to delete variables. Prev . Home . Next . copy . Up . dirname
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.delete.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2666. clearstatcache
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) clearstatcache -- Clears file stat cache . ... Invoking the stat or lstat system call on most systems is quite expensive. Therefore, the result of the last call to any of the status functions (listed below) is stored for use on the next such call using the same filename. If you wish to force a new status check, for instance if the file is being checked many times and may change or disappear, use this function to clear the results of the last call from memory. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.clearstatcache.html -- 5.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2667. chown
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) chown -- Changes file owner . int chown ( string filename, mixed user) . Attempts to change the owner of the file filename to user user (specified by name or number). Only the superuser may change the owner of a file. Returns TRUE on success; otherwise returns FALSE . See also chown() and chmod() . Note: This function is not implemented on Windows platforms. Prev . Home . Next . chmod . Up . clearstatcache
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.chown.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2668. chgrp
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) chgrp -- Changes file group . int chgrp ( string filename, mixed group) . Attempts to change the group of the file filename to group (specified by name or number). Only the superuser may change the group of a file arbitrarily; other users may change the group of a file to any group of which that user is a member. Returns TRUE on success; otherwise returns FALSE . See also chown() and chmod() . ... chmod ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.chgrp.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2669. chmod
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) chmod -- Changes file mode . int chmod ( string filename, int mode) . Attempts to change the mode of the file specified by filename to that given in mode . ... chmod ("/somedir/somefile", 755); // decimal; probably incorrect chmod ("/somedir/somefile", "u+rwx,go+rx"); // string; incorrect chmod ("/somedir/somefile", 0755); // octal; correct value of mode . ... See also chown() and chgrp() . ... chgrp . ... chown ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.chmod.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2670. basename
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) basename -- Returns filename component of path . string basename ( string path [, string suffix]) . Given a string containing a path to a file, this function will return the base name of the file. ... Example 1. basename() example . path = "/home/httpd/html/index.php"; $file = basename ($path); // $file is set to "index.php" $file = basename ($path,".php"); // $file is set to "index" . Note: The suffix parameter was added in PHP 4.1.0. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.basename.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2671. filepro_rowcount
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) filepro_rowcount -- find out how many rows are in a filePro database . int filepro_rowcount ( (void);) . Returns the number of rows in the opened filePro database. Note: When safe mode is enabled, PHP checks whether the file(s)/directories you are about to operate on have the same UID as the script that is being executed. See also filepro() . Prev . Home . Next . filepro_fieldcount . Up . Filesystem functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.filepro-rowcount.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2672. filePro functions
... Prev . Next . These functions allow read-only access to data stored in filePro databases. filePro is a registered trademark of fP Technologies, Inc. You can find more information about filePro at http://www.fptech.com/ . ... filepro_fieldname -- gets the name of a field . ... filepro_retrieve -- retrieves data from a filePro database . filepro_fieldcount -- find out how many fields are in a filePro database . filepro_rowcount -- find out how many rows are in a filePro database . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.filepro.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2673. filepro_fieldcount
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) filepro_fieldcount -- find out how many fields are in a filePro database . int filepro_fieldcount ( (void);) . Returns the number of fields (columns) in the opened filePro database. See also filepro() . Prev . Home . Next . filepro_retrieve . Up . filepro_rowcount
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.filepro-fieldcount.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2674. filepro_fieldwidth
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) filepro_fieldwidth -- gets the width of a field . int filepro_fieldwidth ( int field_number) . Returns the width of the field corresponding to field_number . Prev . Home . Next . filepro_fieldtype . Up . filepro_retrieve
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.filepro-fieldwidth.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2675. filepro_retrieve
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) filepro_retrieve -- retrieves data from a filePro database . string filepro_retrieve ( int row_number, int field_number) . Returns the data from the specified location in the database. Note: When safe mode is enabled, PHP checks whether the file(s)/directories you are about to operate on have the same UID as the script that is being executed. Prev . Home . Next . filepro_fieldwidth . Up . filepro_fieldcount
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.filepro-retrieve.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2676. filepro_fieldname
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) filepro_fieldname -- gets the name of a field . string filepro_fieldname ( int field_number) . Returns the name of the field corresponding to field_number . Prev . Home . Next . filepro . Up . filepro_fieldtype
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.filepro-fieldname.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2677. filepro_fieldtype
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) filepro_fieldtype -- gets the type of a field . string filepro_fieldtype ( int field_number) . Returns the edit type of the field corresponding to field_number . Prev . Home . Next . filepro_fieldname . Up . filepro_fieldwidth
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.filepro-fieldtype.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2678. filepro
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) filepro -- read and verify the map file . bool filepro ( string directory) . This reads and verifies the map file, storing the field count and info. No locking is done, so you should avoid modifying your filePro database while it may be opened in PHP. Note: When safe mode is enabled, PHP checks whether the file(s)/directories you are about to operate on have the same UID as the script that is being executed. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.filepro.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2679. fbsql_set_transaction
. PHP Manual . Prev . Next . (PHP 4 CVS only) fbsql_set_transaction -- Set the transaction locking and isolation . void fbsql_set_transaction ( resource link_identifier, int Locking, int Isolation) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . fbsql_password . Up . fbsql_username
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-set-transaction.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2680. fbsql_username
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) fbsql_username -- Get or set the host user used with a connection . string fbsql_username ( resource link_identifier [, string username]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . fbsql_set_transaction . Up . filePro functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.fbsql-username.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы