버그가 제거되도록 하기 위해 한자가 포함된 문자열 앞에 ' 또는 반각 기호를 추가하는 것을 본 적이 있는데 이는 너무 번거롭습니다. 마지막으로 fgetcsv의 기능을 시뮬레이션하는 함수를 찾았습니다.
코드 복사 코드는 다음과 같습니다.
function __fgetcsv(& $handle, $length = null, $d = ',' , $e = '"') {
$d = preg_quote($d);
$e = preg_quote($e);
$_line = "";
$eof =false;
while ($eof != true) {
$_line .= (비어 있음 ($length) ? fgets($handle) : fgets($handle, $length)); = preg_match_all( '/' . $e . '/', $_line, $dummy);
if ($itemcnt % 2 == 0)
$eof =
}
$ _csv_line = preg_replace ('/(?: |[ ])?$/', $d, Trim($_line))
$_csv_pattern = '/(' . $e . '[^' . $e . ']* (?:' . $e . $e . '[^' . $e . ']*)*' . $e . ']*)' . '/' ;
preg_match_all($_csv_pattern, $_csv_line, $_csv_matches)
$_csv_data = $_csv_matches[1]
for ($_csv_i < count($_csv_data) ; $_csv_i ) {
$_csv_data[$_csv_i] = preg_replace('/^' . $e . '(.*)' . $e . '$/s', '$1′ , $_csv_data[$_csv_i ]);
$_csv_data[$_csv_i] = str_replace($e . $e, $e, $_csv_data[$_csv_i])
}
값 반환($_line) ? ;
}