我收到以下错误:
“注意:fgetcsv() [function.fgetcsv]:分隔符必须是单个字符”在我的浏览器中
我的 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);