Поиск по:oit.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера oit.cmc.msu.ru ,которые мы индексируем. Показаны документы 2761 - 2780 из 3520.
Упорядочить по:
URL
|
дате изменения
2761. domxml_add_root
... PHP 4 >= 4.0.0) domxml_add_root -- Adds a further root node . resource domxml_add_root ( resource doc, string name) . ... 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. ... Creating a simple HTML document header . php $doc = new_xmldoc("1.0"); $root = $doc->add_root("HTML"); $head = $root->new_child("HEAD", ""); $head->new_child("TITLE", "Hier der Titel"); echo $doc->dumpmem(); ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.domxml-add-root.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2762. domxml_root
... PHP 4 >= 4.0.0) domxml_root -- Returns root element node . ... The following example returns just the element with name CHAPTER and prints it. ... DOCTYPE chapter SYSTEM '/share/sgml/Norman_Walsh/db3xml10/db3xml10.dtd' [ !ENTITY sp \ spanish\ ] !-- lsfj -- chapter language ='en' title language ='en' Title /title para language ='ge' amp;sp; !-- comment -- informaltable language =' amp;sp;' tgroup cols='3' tbody row entry a1 / entry entry morerows='1' b1 / ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.domxml-root.html -- 5.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2763. xmldocfile
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) xmldocfile -- Creates a DOM object from XML file . object xmldocfile ( string filename) . ... 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. ... The function parses the XML document in the file named filename and returns an object of class "Dom document", having the properties as listed above. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.xmldocfile.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2764. xmltree
... PHP 4 >= 4.0.0) xmltree -- Creates a tree of PHP objects from XML document . ... 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. ... The function parses the XML document in str and returns a tree PHP objects as the parsed document. ... Modifying it, for example by adding nodes, makes no sense since there is currently no way to dump it as an XML file. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.xmltree.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2765. xmldoc
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) xmldoc -- Creates a DOM object of an XML document . object xmldoc ( string str) . ... 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. ... The function parses the XML document in str and returns an object of class "Dom document", having the properties as listed above. ... DOM XML functions . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.xmldoc.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2766. rewinddir
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rewinddir -- rewind directory handle . void rewinddir ( resource dir_handle) . Resets the directory stream indicated by dir_handle to the beginning of the directory. Prev . Home . Next . readdir . Up . DOM XML functions
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.rewinddir.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2767. Directory functions
. PHP Manual . Prev . Next . For related functions such as dirname() , is_dir() , mkdir() , and rmdir() , see the Filesystem section. Table of Contents . chroot -- change the root directory . chdir -- change directory . dir -- directory class . closedir -- close directory handle . getcwd -- gets the current working directory . opendir -- open directory handle . readdir -- read entry from directory handle . rewinddir -- rewind directory handle . Prev . Home . Next . dio_close . Up . chroot
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/ref.dir.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2768. getcwd
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) getcwd -- gets the current working directory . string getcwd ( (void);) . Returns the current working directory. Prev . Home . Next . closedir . Up . opendir
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.getcwd.html -- 3.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2769. opendir
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) opendir -- open directory handle . ... Returns a directory handle to be used in subsequent closedir() , readdir() , and rewinddir() calls. If path is not a valid directory or the directory can not be opened due to permission restrictions or filesystem errors, opendir() returns FALSE and generates a PHP error. ... Example 1. opendir() example . php if ($dir = @opendir("/tmp")) { while (($file = readdir($dir)) !== false) { echo "$file\n"; } closedir($dir); } ?> ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.opendir.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2770. readdir
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) readdir -- read entry from directory handle . ... Note that !== did not exist until 4.0.0-RC2 <?php $handle=opendir('.'); echo "Directory handle: $handle\n"; echo "Files:\n"; while (false !== ($file = readdir($handle))) { echo "$file\n"; } closedir($handle); ?> ... and .. <?php $handle = opendir('.'); while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { echo "$file\n"; } } closedir($handle); ?> ... opendir . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.readdir.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2771. dir
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) dir -- directory class . ... A pseudo-object oriented mechanism for reading a directory. ... Two properties are available once the directory has been opened. ... The path property is set to path the directory that was opened. Three methods are available: read, rewind and close. ... d = dir("/etc"); echo "Handle: ".$d->handle."<br>\n"; echo "Path: ".$d->path."<br>\n"; while (false !== ($entry = $d->read())) { echo $entry."<br>\n"; } $d->close(); . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/class.dir.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2772. closedir
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) closedir -- close directory handle . void closedir ( resource dir_handle) . Closes the directory stream indicated by dir_handle . The stream must have previously been opened by opendir() . Prev . Home . Next . dir . Up . getcwd
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.closedir.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2773. chdir
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) chdir -- change directory . bool chdir ( string directory) . Changes PHP's current directory to directory . Returns FALSE if unable to change directory, TRUE otherwise. Prev . Home . Next . chroot . Up . dir
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.chdir.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2774. chroot
PHP Manual . Prev . Next . PHP 4 >= 4.0.5) chroot -- change the root directory . bool chroot ( string directory) . Changes the root directory of the current process to directory . Returns FALSE if unable to change the root directory, TRUE otherwise. Note: It's not wise to use this function when running in a webserver environment, because it's not possible to reset the root directory to / again at the end of the request. ... Directory functions . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.chroot.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2775. Direct IO functions
PHP Manual . Prev . Next . PHP supports the direct io functions as described in the Posix Standard (Section 6) for performing I/O functions at a lower level than the C-Language stream I/O functions (fopen, fread,.. ... dio_open -- Opens a new filename with specified permissions of flags and creation permissions of mode . dio_read -- Reads n bytes from fd and returns them, if n is not specified, reads 1k block . ... dio_truncate -- Truncates file descriptor fd to offset bytes . ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/ref.dio.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2776. dio_close
. PHP Manual . Prev . Next . (PHP 4 CVS only) dio_close -- Closes the file descriptor given by fd . void dio_close ( resource fd) . The function dio_close() closes the file descriptor resource . Prev . Home . Next . dio_fcntl . Up . Directory functions
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.dio-close.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2777. dio_fcntl
... mixed dio_fcntl ( resource fd, int cmd [, mixed arg]) . ... Some commands require additional arguments args to be supplied. arg is an associative array, when cmd is F_SETLK or F_SETLLW, with the following keys: . ... If the lock is held by someone else dio_fcntl() returns -1. F_SETLKW - like F_SETLK, but in case the lock is held by someone else, dio_fcntl() waits until the lock is released. F_GETLK - dio_fcntl() returns an associative array (as described above) if someone else prevents lock. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.dio-fcntl.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2778. dio_seek
... PHP 4 CVS only) dio_seek -- Seeks to pos on fd from whence . ... The function dio_seek() is used to change the file position of the file with descriptor resource . ... SEEK_CUR - Specifies that pos is a count of characters from the current file position. ... SEEK_END - Specifies that pos is a count of characters from the end of the file. A negative count specifies a position within the current extent of the file; a positive count specifies a position past the current end. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.dio-seek.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2779. dio_stat
... PHP 4 CVS only) dio_stat -- Gets stat information about the file descriptor fd . array dio_stat ( resource fd) . Function dio_stat() returns information about the file with file descriptor fd . dio_stat() returns an associative array with the following keys: . device" - device . inode" - inode . ... blocksize" - blocksize . blocks" - number of blocks allocated . atime" - time of last access . ... ctime" - time of last change On error dio_stat() returns NULL. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.dio-stat.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2780. dio_truncate
PHP Manual . Prev . Next . PHP 4 CVS only) dio_truncate -- Truncates file descriptor fd to offset bytes . bool dio_truncate ( resource fd, int offset) . Function dio_truncate() causes the file referenced by fd to be truncated to at most offset bytes in size. If the file previously was larger than this size, the extra data is lost. If the file previously was shorter, it is unspecified whether the file is left unchanged or is extended. ...
[
Сохраненная копия
]
Ссылки http://oit.cmc.msu.ru/php/function.dio-truncate.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы