hi
I'm a newbie with php and need a little help if anyone could provide it. i'm trying to load a list of words from a file and lower the case of the words and remove duplicates. It all works except the changing the words to lower case, but it doesn't through up any errors. This is only part of my script but it's that, that doesn't work. like i say i'm a php newbie so it might be something stupid. Any help appreciated
if (is_uploaded_file($userfile)) {
$linesraw = file ("$userfile");
$phraselower = array_change_key_case($linesraw, CASE_LOWER);
$lines = array_unique($phraselower);
thanks in advance
I'm a newbie with php and need a little help if anyone could provide it. i'm trying to load a list of words from a file and lower the case of the words and remove duplicates. It all works except the changing the words to lower case, but it doesn't through up any errors. This is only part of my script but it's that, that doesn't work. like i say i'm a php newbie so it might be something stupid. Any help appreciated
if (is_uploaded_file($userfile)) {
$linesraw = file ("$userfile");
$phraselower = array_change_key_case($linesraw, CASE_LOWER);
$lines = array_unique($phraselower);
thanks in advance

Comment