3
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?

More than 3 years have passed since last update.

PHP Notice: Array to string conversion エラー

Posted at

###PHP Notice: Array to string conversion エラーとは
「配列が文字列に変換」されてしまうという趣旨の警告。
配列は、文字列化されると強制的にArrayという文字列に変換されてしまう。

原因別に異なる対処が必要となる。
参考にさせていただいたサイトに各種の方法が記載されていた。
今回は、配列を文字列に変換する関数「 implode() 」で解決できた。

implode( 配列 )

###参考サイト
https://marycore.jp/prog/php/notice-array-to-string-conversion/

3
0
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
3
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?