0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PHPで先頭や末尾の改行コードを取り除く

Last updated at Posted at 2024-05-28

PHPの勉強始めました。
今までなんとなくで使っていたので、初心に戻って1つづつ学んでいます。

trim()を使う

変数をechoした時に、謎の改行が出ていたので取り除く方法を探しました。
見つかったのがtrim()、文字列の先頭及び末尾の空白文字を削除します。

trim( "対応の文字列", "削除したい文字列" );

第2引数に何も指定しない場合は、以下の文字コードが削除されます。
今回削除したいのは、改行だったのでちょうど良い。

" " (ASCII 32 (0x20)), 通常の空白。
"\t" (ASCII 9 (0x09)), タブ。
"\n" (ASCII 10 (0x0A)), リターン。
"\r" (ASCII 13 (0x0D)), 改行。
"\0" (ASCII 0 (0x00)), NULバイト
"\v" (ASCII 11 (0x0B)), 垂直タブ

始めての技術アウトプット、終わり。

参考記事

0
0
2

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?