mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Improved handling of output buffers (see news)\n#No trim for the string parameter...
This commit is contained in:
parent
2e29e53e00
commit
9c8ba935d6
8 changed files with 185 additions and 70 deletions
|
@ -26,10 +26,11 @@ typedef void (*php_output_handler_func_t)(char *output, uint output_len, char **
|
|||
PHPAPI void php_output_startup(void);
|
||||
PHPAPI void php_output_activate(TSRMLS_D);
|
||||
PHPAPI void php_output_set_status(zend_bool status TSRMLS_DC);
|
||||
void php_output_register_constants(TSRMLS_D);
|
||||
PHPAPI void php_output_register_constants(TSRMLS_D);
|
||||
PHPAPI int php_body_write(const char *str, uint str_length TSRMLS_DC);
|
||||
PHPAPI int php_header_write(const char *str, uint str_length TSRMLS_DC);
|
||||
PHPAPI int php_start_ob_buffer(zval *output_handler, uint chunk_size, zend_bool erase TSRMLS_DC);
|
||||
PHPAPI int php_start_ob_buffer_named(const char *output_handler_name, uint chunk_size, zend_bool erase TSRMLS_DC);
|
||||
PHPAPI void php_end_ob_buffer(zend_bool send_buffer, zend_bool just_flush TSRMLS_DC);
|
||||
PHPAPI void php_end_ob_buffers(zend_bool send_buffer TSRMLS_DC);
|
||||
PHPAPI int php_ob_get_buffer(zval *p TSRMLS_DC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue