From cb88ec112aeea03d402d31437a6ebaf2131a8c76 Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Mon, 2 Jul 2001 17:55:34 +0000 Subject: [PATCH] TRUE/FALSE -> literal added some "and" in See also lists. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@50497 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/iconv.xml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/functions/iconv.xml b/functions/iconv.xml index d0e5347caa..d54652c6cc 100644 --- a/functions/iconv.xml +++ b/functions/iconv.xml @@ -41,7 +41,7 @@ It converts the string string encoded in in_charset to the string encoded in out_charset. It returns the converted - string or FALSE, if it fails. + string or FALSE, if it fails. @@ -73,11 +73,12 @@ echo iconv("ISO-8859-1","UTF8","This is test."); It returns the current settings of - ob_iconv_handler as array or FALSE in failure. + ob_iconv_handler as array or + FALSE in failure. See also: - iconv_set_encoding, + iconv_set_encoding and ob_iconv_handler. @@ -101,8 +102,8 @@ echo iconv("ISO-8859-1","UTF8","This is test."); It changes the value of type to - charset and returns TRUE in success or - FALSE in failure. + charset and returns TRUE in success or + FALSE in failure. @@ -115,7 +116,7 @@ iconv_set_encoding("output_encoding", "ISO-8859-1"); See also: - iconv_get_encoding, + iconv_get_encoding and ob_iconv_handler. @@ -162,7 +163,7 @@ ob_start("ob_iconv_handler"); // start output buffering See also: - iconv_get_encoding, + iconv_get_encoding and iconv_set_encoding.