[Bug 255895] [NEW] found bug on PHP5
Launchpad Bug Tracker
255895 at bugs.launchpad.net
Fri Aug 8 08:53:01 BST 2008
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.
More information about the Ubuntu-server-bugs
mailing list