CSV::getDownloadFilename PHP 메소드

getDownloadFilename() 공개 메소드

Used for constructing the filename of the filename when downloading.
또한 보기: ExportTypePlugin::getDownloadFilename()
public getDownloadFilename ( Generator $generator ) : string
$generator Generator
리턴 string
    public function getDownloadFilename($generator)
    {
        $time = date("M-j-Y");
        return "data{$time}.csv";
    }