Index: phpdoc/en/chapters/install.xml
diff -u phpdoc/en/chapters/install.xml:1.65 phpdoc/en/chapters/install.xml:1.66
--- phpdoc/en/chapters/install.xml:1.65 Mon Jun 11 08:57:20 2001
+++ phpdoc/en/chapters/install.xml Sat Jun 30 23:38:17 2001
@@ -2835,6 +2835,20 @@
+
+
+ --with-iconv[=DIR]
+
+
+
+ PHP 3: Option not available in PHP 3
+
+
+ PHP 4: Include iconv support.
+
+
+
+
--with-pspell[=DIR]
Index: phpdoc/ja/Translators
diff -u phpdoc/ja/Translators:1.24 phpdoc/ja/Translators:1.25
--- phpdoc/ja/Translators:1.24 Thu Jun 28 23:23:08 2001
+++ phpdoc/ja/Translators Sat Jun 30 23:38:18 2001
@@ -68,6 +68,7 @@
functions/imap.xml Michihide Hotta
functions/info.xml Michihide Hotta
functions/ingres_ii.xml Rui Hirokawa
+functions/java.xml Rui Hirokawa
functions/mail.xml Rui Hirokawa
functions/math.xml Machino Satoshi
functions/mbstring.xml Rui Hirokawa
@@ -91,6 +92,7 @@
functions/pfpro.xml Rui Hirokawa
functions/pgsql.xml Rui Hirokawa
functions/posix.xml Rui Hirokawa
+functions/printer.xml Rui Hirokawa
functions/pspell.xml Rui Hirokawa
functions/recode.xml Rui Hirokawa
functions/regex.xml Rui Hirokawa
Index: phpdoc/ja/functions/mbstring.xml
diff -u phpdoc/ja/functions/mbstring.xml:1.3 phpdoc/ja/functions/mbstring.xml:1.4
--- phpdoc/ja/functions/mbstring.xml:1.3 Thu Jun 28 23:21:32 2001
+++ phpdoc/ja/functions/mbstring.xml Sat Jun 30 23:38:19 2001
@@ -273,7 +273,7 @@
トリでは、"auto" および
"pass" も指定可能です。
mbstring 関数には、エンコーディング名と
- quot;auto" を指定可能です。
+ "auto" を指定可能です。
"pass" が指定された場合、文字エンコー
Index: phpdoc/ja/functions/strings.xml
diff -u phpdoc/ja/functions/strings.xml:1.37 phpdoc/ja/functions/strings.xml:1.38
--- phpdoc/ja/functions/strings.xml:1.37 Thu Jun 28 23:21:32 2001
+++ phpdoc/ja/functions/strings.xml Sat Jun 30 23:38:19 2001
@@ -897,38 +897,6 @@
-
-
- iconv
- 文字列のコードを変換する
-
-
- 説明
-
-
- string iconv
- string in
- string out
- string str
-
-
-
- iconv は、in でエンコー
- ドされた文字列 str をエンコード
- out に変換し、結果の文字列を返します。
-
- iconvの例
-
-print iconv ("UTF-8", "EUC-JP" $str);
-
-
-
-
- iconv は、PHP 4.0.5 で導入されました。
-
-
-
-
implode
Index: phpdoc/en/functions/iconv.xml
+++ phpdoc/en/functions/iconv.xml
iconv functionsiconv
This module contains an interface to the iconv library functions. To
be able to use the functions defined in this
module you must compile you PHP interpreter using the --with-iconv
option. In order to do so, you must have iconv() function in
standard C library or libiconv installed on your system.
libiconv library is available from
&url.libiconv;.
iconv library function converts files between various encoded
character sets. The supported character sets depend on iconv()
implementation on your system. Note that iconv() function in some
system is not work well as you expect. In this case, you should
install libiconv library.
iconvConvert string to requested character encodingDescriptionstring iconvstring in_charsetstring out_charsetstring str
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.
iconv example:
echo iconv("ISO-8859-1","UTF8","This is test.");
iconv_get_encoding
Get current setting for character encoding conversion
Descriptionarray iconv_get_encodingstring
type
It returns the current settings of
ob_iconv_handler as array or FALSE in failure.
See also:
iconv_set_encoding,
ob_iconv_handler.
iconv_set_encoding
Set current setting for character encoding conversion
Descriptionarray iconv_set_encodingstring typestring charset
It changes the value of type to
charset and returns TRUE in success or
FALSE in failure.
iconv_set_encoding example:
iconv_set_encoding("internal_encoding", "UTF-8");
iconv_set_encoding("output_encoding", "ISO-8859-1");
See also:
iconv_get_encoding,
ob_iconv_handler.
ob_iconv_handler
Convert character encoding as output buffer handler
Descriptionarray ob_iconv_handlerstring
contentsint
status
It converts the string encoded in
internal_encoding to
output_encoding.
internal_encoding and
output_encoding should be defined
by iconv_set_encoding or in
configuration file.
ob_iconv_handler example:
ob_start("ob_iconv_handler"); // start output buffering
See also:
iconv_get_encoding,
iconv_set_encoding.