0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Laravel】csvの全項目をダブルクォーテーションで囲む方法!

Posted at

泉(@izumin_0401)です。

今回は、Laravelでcsvの全項目をダブルクォーテーションで囲む方法を解説しやす!

今回は、便利なので「League/Csv」というライブラリを使います。よろしくっす!

ブログ記事はこちら

【Laravel】csvの全項目をダブルクォーテーションで囲む方法

use League\Csv\Writer;

class CsvService
{
    public function exec()
    {
        $csv = Writer::createFromString('');

        $csv->forceEnclosure(); // ダブルクォーテーションで囲む

        $csv->insertOne($header);
        $csv->insertAll($data);

        return $csv->getContent();
    }
}

「forceEnclosure」を使えば全項目をダブルクォーテーションで囲んでくれます。

まとめ

ライブラリを使えばめっちゃ簡単にできた...

よろしくっす!(謎テンション)

ではまた!

最後に

暇つぶしにTwitterブログもやってるので見てね。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?