П О Р Т А Л                            
С Е Т Е В Ы Х                          
П Р О Е К Т О В                        
  
Поиск по сайту:
                                                 
Главная

О проекте

Web-мастеру
     HTML & JavaScript
     SSI
     Perl
     PHP
     XML & XSLT
     Unix Shell

MySQL

Безопасность

Хостинг

Другое








Самое читаемое:

Учебник PHP - "Для Чайника".
Просмотров 4207 раз(а).

Иллюстрированный самоучитель по созданию сайтов.
Просмотров 6879 раз(а).

Учебник HTML.
Просмотров 3815 раз(а).

Руководство по PHP5.
Просмотров 6116 раз(а).

Хостинг через призму DNS.
Просмотров 4969 раз(а).

Подборка текстов стандартных документов.
Просмотров 56357 раз(а).

Учебник PHP - Самоучитель
Просмотров 3817 раз(а).

Документация на MySQL (учебник & справочное руководство)
Просмотров 8777 раз(а).

Внешние атаки...
Просмотров 4689 раз(а).

Учебник PHP.
Просмотров 3249 раз(а).

SSI в примерах.
Просмотров 254 раз(а).



 
 
| Добавить в избранное | Сделать стартовой | Помощь





Руководство по PHP
Пред. След.

php_stream_read

(no version information, might be only in CVS)

php_stream_read -- Read a number of bytes from a stream into a buffer

Description

size_t php_stream_read ( php_stream * stream, char * buf, size_t count )

php_stream_read() reads up to count bytes of data from stream and copies them into the buffer buf.

php_stream_read() returns the number of bytes that were read successfully. There is no distinction between a failed read or an end-of-file condition - use php_stream_eof() to test for an EOF.

The internal position of the stream is advanced by the number of bytes that were read, so that subsequent reads will continue reading from that point.

If less than count bytes are available to be read, this call will block (or wait) until the required number are available, depending on the blocking status of the stream. By default, a stream is opened in blocking mode. When reading from regular files, the blocking mode will not usually make any difference: when the stream reaches the EOF php_stream_read() will return a value less than count, and 0 on subsequent reads.


Пред. Начало След.
php_stream_open_wrapper Уровень выше php_stream_write


Если Вы не нашли что искали, то рекомендую воспользоваться поиском по сайту:
 





Copyright © 2005-2016 Project.Net.Ru