Online Documentation Server
 ПОИСК
ods.com.ua Web
 КАТЕГОРИИ
Home
Programming
Net technology
Unixes
Security
RFC, HOWTO
Web technology
Data bases
Other docs

 


 ПОДПИСКА

 О КОПИРАЙТАХ
Вся предоставленная на этом сервере информация собрана нами из разных источников. Если Вам кажется, что публикация каких-то документов нарушает чьи-либо авторские права, сообщите нам об этом.




ob_start

ob_start

(PHP4 )

ob_start -- Turn on output buffering

Description

void ob_start(void);

This function will turn output buffering. While output buffering is active there will be no rel output from the script, the output is appended to an internal buffer instead.

The contents of this internal buffer may be copied into a string variable using ob_get_contents(). Real output happens when ob_end_flush() is called and ob_end_clean() will just silently discard the buffer contents.

See also ob_get_contents(), ob_end_flush(), ob_end_clean() and ob_implicit_flush()



With any suggestions or questions please feel free to contact us