nah... "If it(==from_encoding) is not specified, the internal encoding will be used." (http://jp.php.net/manual/en/function.mb-convert-encoding.php)
so it's just because mbstring.internal_encoding is not properly set? Masaki Fujimoto On Thu, 17 Oct 2002 08:17:27 +0900 Yasuo Ohgaki <[EMAIL PROTECTED]> wrote: > Forgot to what it's doing. > > Since the multibyte char sequence is too short, mbstring > is failing to detect encoding correctly. In this case, > we can specify encoding or modify detect order. > > -- > Yasuo Ohgaki > > Yasuo Ohgaki wrote: > > Ryo Takagi wrote: > > > >> If the line: > >> > >> print ( mb_convert_encoding( $jstr, "ISO-2022-JP" ) ) ; > >> > >> in this script is modified to: > >> > >> print ( mb_convert_encoding( $jstr, "ISO-2022-JP", "EUC-JP" ) ) ; > >> > >> then it works again. > > > > > > This cannot be fixed. Check & modify your detect order by > > mb_detect_order(). > > > > -- > > Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php