DboSource::_convertFieldToCsv PHP Method

_convertFieldToCsv() protected method

CSV用のフィールドデータに変換する
protected _convertFieldToCsv ( string $value, boolean $dc = true ) : string
$value string
$dc boolean ( " を "" に変換するか)
return string
    protected function _convertFieldToCsv($value, $dc = true)
    {
        if ($dc) {
            $value = str_replace('"', '""', $value);
        }
        $value = trim(trim($value), "\\'");
        $value = str_replace("\\'", "'", $value);
        $value = str_replace('{CM}', ',', $value);
        $value = '"' . $value . '"';
        return $value;
    }
DboSource