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

В начало ] Пред. | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | След.В конец ]

Упорядочить по: URL  |  дате изменения
501. gzwrite
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzwrite -- Binary-safe gz-file write . int gzwrite ( int zp, string string [, int length]) . gzwrite() writes the contents of string to the gz-file stream pointed to by zp . If the length argument is given, writing will stop after length (uncompressed) bytes have been written or the end of string is reached, whichever comes first. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzwrite.html -- 4.2 Кб -- 03.02.2002
Похожие документы

502. gztell
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gztell -- Tell gz-file pointer read/write position . int gztell ( int zp) . Returns the position of the file pointer referenced by zp ; i.e., its offset into the file stream. If an error occurs, returns FALSE . The file pointer must be valid, and must point to a file successfully opened by gzopen() . See also gzopen() , gzseek() and gzrewind() . Prev . Home . Next . gzseek . Up . gzwrite
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gztell.html -- 3.8 Кб -- 03.02.2002
Похожие документы

503. gzrewind
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzrewind -- Rewind the position of a gz-file pointer . int gzrewind ( int zp) . Sets the file position indicator for zp to the beginning of the file stream. If an error occurs, returns 0. The file pointer must be valid, and must point to a file successfully opened by gzopen() . See also gzseek() and gztell() . Prev . Home . Next . gzread . Up . gzseek
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzrewind.html -- 3.6 Кб -- 03.02.2002
Похожие документы

504. gzseek
... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzseek -- Seek on a gz-file pointer . int gzseek ( int zp, int offset) . Sets the file position indicator for the file referenced by zp to offset bytes into the file stream. ... If the file is opened for reading, this function is emulated but can be extremely slow. If the file is opened for writing, only forward seeks are supported; gzseek then compresses a sequence of zeroes up to the new starting position. ... See also gztell() and gzrewind() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzseek.html -- 3.9 Кб -- 03.02.2002
Похожие документы

505. gzputs
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzputs -- Write to a gz-file pointer . int gzputs ( int zp, string str [, int length]) . gzputs() is an alias to gzwrite() , and is identical in every way. Prev . Home . Next . gzpassthru . Up . gzread
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzputs.html -- 3.3 Кб -- 03.02.2002
Похожие документы

506. gzread
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzread -- Binary-safe gz-file read . string gzread ( int zp, int length) . gzread() reads up to length bytes from the gz-file pointer referenced by zp . Reading stops when length (uncompressed) bytes have been read or EOF is reached, whichever comes first. // get contents of a gz-file into a string $filename = "/usr/local/something.txt.gz"; $zd = gzopen ($filename, "r"); $contents = gzread ($zd, 10000); gzclose ($zd); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzread.html -- 4.3 Кб -- 03.02.2002
Похожие документы

507. gzopen
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzopen -- Open gz-file . int gzopen ( string filename, string mode [, int use_include_path]) . Opens a gzip (.gz) file for reading or writing. The mode parameter is as in fopen() ("rb" or "wb") but can also include a compression level ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman only compression as in "wb1h". ... Example 1. gzopen() Example . fp = gzopen ("/tmp/file.gz", "r"); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzopen.html -- 4.9 Кб -- 03.02.2002
Похожие документы

508. gzpassthru
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzpassthru -- Output all remaining data on a gz-file pointer . int gzpassthru ( int zp) . Reads to EOF on the given gz-file pointer and writes the (uncompressed) results to standard output. If an error occurs, returns FALSE . The file pointer must be valid, and must point to a file successfully opened by gzopen() . The gz-file is closed when gzpassthru() is done reading it (leaving zp useless). Prev . Home . Next . gzopen . Up . gzputs
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzpassthru.html -- 3.7 Кб -- 03.02.2002
Похожие документы

509. gzgets
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzgets -- Get line from file pointer . string gzgets ( int zp, int length) . Returns a (uncompressed) string of up to length - 1 bytes read from the file pointed to by fp. Reading ends when length - 1 bytes have been read, on a newline, or on EOF (whichever comes first). ... The file pointer must be valid, and must point to a file successfully opened by gzopen() . See also gzopen() , gzgetc() , and fgets() . ... gzgetc . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzgets.html -- 3.8 Кб -- 03.02.2002
Похожие документы

510. gzgetss
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzgetss -- Get line from gz-file pointer and strip HTML tags . string gzgetss ( int zp, int length [, string allowable_tags]) . Identical to gzgets() , except that gzgetss() attempts to strip any HTML and PHP tags from the text it reads. ... Note: Allowable_tags was added in PHP 3.0.13, PHP4B3. See also gzgets() , gzopen() , and strip_tags() . ... gzgets . ... gzopen ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzgetss.html -- 3.9 Кб -- 03.02.2002
Похожие документы

511. gzgetc
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzgetc -- Get character from gz-file pointer . string gzgetc ( int zp) . Returns a string containing a single (uncompressed) character read from the file pointed to by zp. Returns FALSE on EOF (as does gzeof() ). The gz-file pointer must be valid, and must point to a file successfully opened by gzopen() . See also gzopen() , and gzgets() . Prev . Home . Next . gzfile . Up . gzgets
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzgetc.html -- 3.7 Кб -- 03.02.2002
Похожие документы

512. gzeof
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzeof -- Test for end-of-file on a gz-file pointer . int gzeof ( int zp) . Returns TRUE if the gz-file pointer is at EOF or an error occurs; otherwise returns FALSE . The gz-file pointer must be valid, and must point to a file successfully opened by gzopen() . Prev . Home . Next . gzclose . Up . gzfile
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzeof.html -- 3.4 Кб -- 03.02.2002
Похожие документы

513. gzfile
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzfile -- Read entire gz-file into an array . array gzfile ( string filename [, int use_include_path]) . Identical to readgzfile() , except that gzfile() returns the file in an array. You can use the optional second parameter and set it to "1", if you want to search for the file in the include_path , too. See also readgzfile() , and gzopen() . Prev . Home . Next . gzeof . Up . gzgetc
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzfile.html -- 3.7 Кб -- 03.02.2002
Похожие документы

514. gzclose
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) gzclose -- Close an open gz-file pointer . int gzclose ( int zp) . The gz-file pointed to by zp is closed. Returns TRUE on success and FALSE on failure. The gz-file pointer must be valid, and must point to a file successfully opened by gzopen() . Prev . Home . Next . Zlib Compression Functions . Up . gzeof
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.gzclose.html -- 3.5 Кб -- 03.02.2002
Похожие документы

515. zip_read
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) zip_read -- Read Next Entry in a Zip File Archive . resource zip_read ( resource zip) . Reads the next entry in a zip file archive. The parameter zip must be a zip archive previously opened by zip_open() . Returns a directory entry resource for later use with the zip_entry_...() functions. See also zip_open() , zip_close() , zip_entry_open() , and zip_entry_read() . Prev . Home . Next . zip_open . Up . Zlib Compression Functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.zip-read.html -- 3.9 Кб -- 03.02.2002
Похожие документы

516. zip_open
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) zip_open -- Open a Zip File Archive . resource zip_open ( string filename) . Opens a new zip archive for reading. The filename parameter is the filename of the zip archive to open. Returns a resource handle for later use with zip_read() and zip_close() or returns FALSE if filename does not exist. See also zip_read() and zip_close() . Prev . Home . Next . zip_entry_read . Up . zip_read
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.zip-open.html -- 3.8 Кб -- 03.02.2002
Похожие документы

517. Zip File Functions (Read Only Access)
... This module uses the functions of the ZZIPlib library by Guido Draheim to transparently read ZIP compressed archives and the files inside them. ... Zip Usage Example . php $zip = zip_open("/tmp/test2.zip"); if ($zip) { while ($zip_entry = zip_read($zip)) { echo "Name: " . ... n"; if (zip_entry_open($zip, $zip_entry, "r")) { echo "File Contents:\n"; $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)); echo "$buf\n"; zip_entry_close($zip_entry); } echo "\n"; } zip_close($zip); } ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.zip.html -- 6.7 Кб -- 03.02.2002
Похожие документы

518. zip_entry_read
PHP Manual . ... Next . PHP 4 >= 4.1.0) zip_entry_read -- Read From an Open Directory Entry . string zip_entry_read ( resource zip_entry [, int length]) . Reads up to length bytes from an open directory entry. If length is not specified, then zip_entry_read() will attempt to read 1024 bytes. The parameter zip_entry is a valid directory entry returned by zip_read() . Note: The length parameter should be the uncompressed length you wish to read. ... zip_entry_open . ... zip_open ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.zip-entry-read.html -- 4.3 Кб -- 03.02.2002
Похожие документы

519. zip_entry_open
... PHP 4 >= 4.1.0) zip_entry_open -- Open a Directory Entry for Reading . bool zip_entry_open ( resource zip, resource zip_entry [, string mode]) . ... The parameter zip is a valid resource handle returned by zip_open() . The parameter zip_entry is a directory entry resource returned by zip_read() . ... Note: Unlike fopen() and other similar functions, the return value of zip_entry_open() only indicates the result of the operation and is not needed for reading or closing the directory entry. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.zip-entry-open.html -- 5.0 Кб -- 03.02.2002
Похожие документы

520. zip_entry_filesize
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) zip_entry_filesize -- Retrieve the Actual File Size of a Directory Entry . int zip_entry_filesize ( resource zip_entry) . Returns the actual size of the directory entry specified by zip_entry . The parameter zip_entry is a valid directory entry returned by zip_read() . See also zip_open() and zip_read() . Prev . Home . Next . zip_entry_compressionmethod . Up . zip_entry_name
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.zip-entry-filesize.html -- 3.8 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | След.В конец ]

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