次のエラーが発生します。
「注意:fgetcsv()[function.fgetcsv]:区切り文字は1文字である必要があります」
私のPHPコードは次のとおりです-誰かがそれを再配置できますか?
$fh = fopen('notes.txt', 'r') or die('Unable to open notes.txt');
while(($line = fgetcsv($fh, 0, '||')) !== FALSE)
if ($line[0] == $name) {
echo <<<EOL
My color is $line[2]
EOL;
break; // if there's only ever one '5678' line in the, get out now.
}
fclose($fh);