タイトル: Object of class stdClass could not be converted to string
SEOタイトル: 【PHPエラー】Object of class stdClass could not be converted to string
| この記事の要点 |
|---|
|
エラー内容
|
Object of class stdClass could not be converted to string |
発生条件/原因/対処法
stdClass を String に変換しようとすると発生するエラー。
stdClassの中身を確認するには以下の様に var_export を使用すると良い。
|
var_export($object, true) |