0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHPでCSVのフィールド内改行をbrに変換

Posted at

CSV形式のデータを取り込んでWebなどで表示する処理、結構やるんですがハマることが結構多いです。

フィールド内改行をbrタグに変換する

ひとくちにCSVと言ってもフィールド内改行(セル内改行)に使われる文字コードがいろいろあります。
普通は nl2br関数で変換できるんですが、たまに垂直タブというのでフィールド内改行をしている場合もあって、それだとnl2brだと改行に変換できませんでした。

ので、

$var = preg_replace("/\r|\n|\v/", '<br>', $var);

で置き換えました。

垂直タブは \v でした。

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?