Justtechjobs.com Find a programming school near you






Online Campus Both


php-i18n | 2002091

[PHP-I18N] ISO to EUC convertion From: prabahar (prabahar <email protected>)
Date: 09/04/02

Hi,
I have requirement like this... Read a TEXT file that has codes that
represents Japanese chars in iso-8859-1 encoding.
example "&#35336;&#30011;&#23550;&#27604;" I have to read these and convert
into EUC and write the EUC to a different file.

"
<?php

$fpI = fopen("E:\\input.txt","r");
$fpO = fopen("E:\\output.txt","w+");
$row=0;

while ($data = fgetcsv ($fpI, 1000, "=")) {
    $num = count ($data);
    $row++;

    $str=mb_convert_encoding ( $data[0], "EUC-JP", "ASCII") . "\n";
    fputs($fpO, $str);
}
?>

"

But this doesnt work. Can u please guide me how to achieve this.

Thankyou in advance,
Prabahar
_____________________________________________________________________
Any Opinions, explicit or implied, are solely those of the author and do not necessarily
represent those of Questech. This e-mail may contain confidential and/or privileged
information. If you are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any unauthorized copying,
disclosure or distribution of the material in this e-mail is strictly forbidden.
_____________________________________________________________________

-- 
PHP Internationalization Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php