diff options
author | Andrei Zmievski <andrei@php.net> | 2006-11-21 18:45:21 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2006-11-21 18:45:21 +0000 |
commit | 7cb10e9620846dc5fe10d38816632a6265fe76cd (patch) | |
tree | bd1e56925d560908490b30c4d9d14ac63724a50f /ext | |
parent | e6284e9cbc4c845a35a57891685669379dd74241 (diff) | |
download | php-git-7cb10e9620846dc5fe10d38816632a6265fe76cd.tar.gz |
Note.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/basic_functions.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 85de37ba99..fdf43890f9 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -5479,6 +5479,12 @@ PHP_FUNCTION(php_strip_whitespace) /* {{{ proto bool highlight_string(string string [, bool return] ) U Syntax highlight a string or optionally return it */ + +/* TODO documentation: + * This function will return/ouput UTF-8 if the arg is a Unicode string. Users + * should switch their output encoding to UTF-8 when highlighting or manually + * convert result to their desired encoding. + */ PHP_FUNCTION(highlight_string) { zval **expr; |