diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-04 14:54:30 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-04 14:54:30 +0000 |
commit | 8055da983011d27441fd560f39eea9bc0646580b (patch) | |
tree | 271815f6c0e72d661f2475504f96de8aa1b0a2e2 /ext/standard/php_output.h | |
parent | b6197bcf902373c481eac2c5484954c3b3bd5f85 (diff) | |
download | php-git-8055da983011d27441fd560f39eea9bc0646580b.tar.gz |
Use the new state functions
@- If header information is sent after output has already been sent, the warning
@ message will now state the filename and line number at which the first output
@ was made (Zeev)
Diffstat (limited to 'ext/standard/php_output.h')
-rw-r--r-- | ext/standard/php_output.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/php_output.h b/ext/standard/php_output.h index 17c8424429..95c6c26ede 100644 --- a/ext/standard/php_output.h +++ b/ext/standard/php_output.h @@ -30,7 +30,8 @@ PHPAPI void php_end_ob_buffering(int send_buffer); PHPAPI int php_ob_get_buffer(pval *p); PHPAPI void php_start_implicit_flush(); PHPAPI void php_end_implicit_flush(); - +PHPAPI char *php_get_output_start_filename(); +PHPAPI int php_get_output_start_lineno(); extern zend_module_entry output_module_entry; #define phpext_output_ptr &output_module_entry |