You have been subscribed to a public bug:

I found a bug while I'm developing the local community website. I'm using php 
code for display a data from csv file format that you can import from the 
spreed sheet software. 
http://www.sangaban.org/download/bugs/news.csv <=== My data is utf-8
The Code is
<?php
$file = fopen("news.txt","r");
while (!feof($file))
{
print_r(fgetcsv($file,1024));
print "";
}
fclose($file);
?>
This function on PHP can not display the Thai language. I think a bug from 
function fgetcsv(). I can using fgets for display thai lanuage. I'm using 
ubuntu 8.04

** Affects: php5 (Ubuntu)
     Importance: Undecided
         Status: New

-- 
found bug on PHP5
https://bugs.edge.launchpad.net/bugs/255895
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs

Reply via email to