Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 2601 - 2620 из 3519.
Упорядочить по:
URL
|
дате изменения
2601. touch
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) touch -- Sets access and modification time of file . int touch ( string filename [, int time]) . Attempts to set the access and modification time of the file named by filename to the value given by time. ... Example 1. touch() example . if (touch ($FileName)) { print "$FileName modification time has been changed to todays date and time"; } else { print "Sorry Could Not change modification time of $FileName"; } . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.touch.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2602. umask
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) umask -- Changes the current umask . int umask ( int mask) . umask() sets PHP's umask to mask & 0777 and returns the old umask. When PHP is being used as a server module, the umask is restored when each request is finished. umask() without arguments simply returns the current umask. Note: This function is not implemented on Windows platforms. Prev . Home . Next . touch . Up . unlink
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.umask.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2603. tempnam
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) tempnam -- Create file with unique file name . string tempnam ( string dir, string prefix) . ... If the directory does not exist, tempnam() may generate a file in the system's temporary directory, and return the name of that. ... On Windows the TMP environment variable will override the dir parameter, on Linux the TMPDIR environment variable has precedence, while SVR4 will always use your dir parameter if the directory it points to exists. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.tempnam.html -- 5.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2604. tmpfile
PHP Manual . Prev . Next . 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) tmpfile -- Creates a temporary file . ... Creates a temporary file with an unique name in write mode, returning a file handle similar to the one returned by fopen() . The file is automatically removed when closed (using fclose() ), or when the script ends. ... Example 1. tmpfile() example . temp = tmpfile(); fwrite($temp, "writing to tempfile"); fclose($temp); // this removes the file . See also tempnam() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.tmpfile.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2605. symlink
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) symlink -- Creates a symbolic link . int symlink ( string target, string link) . symlink() creates a symbolic link from the existing target with the specified name link . See also link() to create hard links, and readlink() along with linkinfo() . Note: This function is not implemented on Windows platforms. Prev . Home . Next . realpath . Up . tempnam
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.symlink.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2606. lstat
... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) lstat -- Gives information about a file or symbolic link . array lstat ( string filename) . Gathers the statistics of the file or symbolic link named by filename. This function is identical to the stat() function except that if the filename parameter is a symbolic link, the status of the symbolic link is returned, not the status of the file pointed to by the symbolic link. ... device . inode . ... time of last access . ... time of last change . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.lstat.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2607. realpath
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) realpath -- Returns canonicalized absolute pathname . string realpath ( string path) . realpath() expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input path and return the canonicalized absolute pathname. The resulting path will have no symbolic link, '/./' or '/../' components. Example 1. realpath() example . $real_path = realpath ("../../index.php"); . Prev . Home . Next . lstat . Up . symlink
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.realpath.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2608. rmdir
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rmdir -- Removes directory . int rmdir ( string dirname) . Attempts to remove the directory named by pathname. The directory must be empty, and the relevant permissions must permit. this. If an error occurs, returns 0. See also mkdir() . Prev . Home . Next . rewind . Up . stat
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.rmdir.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2609. stat
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) stat -- Gives information about a file . array stat ( string filename) . Gathers the statistics of the file named by filename. Returns an array with the statistics of the file with the following elements: . device . inode . inode protection mode . ... device type if inode device * . ... time of last access . time of last modification . time of last change . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.stat.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2610. rename
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rename -- Renames a file . int rename ( string oldname, string newname) . Attempts to rename oldname to newname . Returns TRUE on success and FALSE on failure. Prev . Home . Next . readlink . Up . rewind
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.rename.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2611. rewind
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rewind -- Rewind the position of a file pointer . int rewind ( int fp) . Sets the file position indicator for fp to the beginning of the file stream. ... The file pointer must be valid, and must point to a file successfully opened by fopen() . Note: If you have opened the file in append ("a") mode, any data you write to the file will always be appended, regardless of the file position. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.rewind.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2612. readfile
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) readfile -- Outputs a file . ... Reads a file and writes it to standard output. ... If filename begins with "http://" (not case sensitive), an HTTP 1.0 connection is opened to the specified server and the text of the response is written to standard output. ... If filename begins with "ftp://" (not case sensitive), an ftp connection to the specified server is opened and the requested file is written to standard output. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.readfile.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2613. readlink
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) readlink -- Returns the target of a symbolic link . string readlink ( string path) . readlink() does the same as the readlink C function and returns the contents of the symbolic link path or 0 in case of error. See also is_link() , symlink() and linkinfo() . Note: This function is not implemented on Windows platforms. Prev . Home . Next . readfile . Up . rename
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.readlink.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2614. popen
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) popen -- Opens process file pointer . int popen ( string command, string mode) . Opens a pipe to a process executed by forking the command given by command. Returns a file pointer identical to that returned by fopen() , except that it is unidirectional (may only be used for reading or writing) and must be closed with pclose() . This pointer may be used with fgets() , fgetss() , and fputs() . ... See also pclose() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.popen.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2615. pathinfo
PHP Manual . ... PHP 4 >= 4.0.3) pathinfo -- Returns information about a file path . array pathinfo ( string path) . pathinfo() returns an associative array containing information about path . The following array elements are returned: dirname , basename and extension . Example 1. pathinfo() Example . php $path_parts = pathinfo("/www/htdocs/index.html"); echo $path_parts["dirname"] . n"; echo $path_parts["basename"] . n"; echo $path_parts["extension"] . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.pathinfo.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2616. pclose
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) pclose -- Closes process file pointer . int pclose ( int fp) . Closes a file pointer to a pipe opened by popen() . The file pointer must be valid, and must have been returned by a successful call to popen() . Returns the termination status of the process that was run. See also popen() . Prev . Home . Next . pathinfo . Up . popen
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.pclose.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2617. move_uploaded_file
... PHP 4 >= 4.0.3) move_uploaded_file -- Moves an uploaded file to a new location. bool move_uploaded_file ( string filename, string destination) . This function checks to ensure that the file designated by filename is a valid upload file (meaning that it was uploaded via PHP's HTTP POST upload mechanism). If the file is valid, it will be moved to the filename given by destination . If filename is not a valid upload file, then no action will occur, and move_uploaded_file() will return FALSE . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.move-uploaded-file.html -- 5.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2618. parse_ini_file
... PHP 4 >= 4.0.0) parse_ini_file -- Parse a configuration file . array parse_ini_file ( string filename [, bool process_sections]) . ... This is a sample configuration file ; Comments start with ';', as in php.ini [first_section] one = 1 five = 5 [second_section] path = /usr/local/bin . ... php // Parse without sections $ini_array = parse_ini_file("sample.ini"); print_r($ini_array); // Parse with sections $ini_array = parse_ini_file("sample.ini", TRUE); print_r($ini_array); ?> ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.parse-ini-file.html -- 5.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2619. linkinfo
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) linkinfo -- Gets information about a link . int linkinfo ( string path) . linkinfo() returns the st_dev field of the UNIX C stat structure returned by the lstat system call. This function is used to verify if a link (pointed to by path ) really exists (using the same method as the S_ISLNK macro defined in stat.h). Returns 0 or FALSE in case of error. See also symlink() , link() , and readlink() . ... link . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.linkinfo.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2620. mkdir
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mkdir -- Makes directory . int mkdir ( string pathname, int mode) . Attempts to create the directory specified by pathname. Note that you probably want to specify the mode as an octal number, which means it should have a leading zero. The mode is also modified by the current umask, which you can change using umask() . mkdir ("/path/to/my/dir", 0700); . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mkdir.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы