ヘッドライン
メイン | 簡易ヘッドライン |
Caught exception: Serialization of ‘SimpleXMLElement’ is not allowed (2022-11-8 19:42:46)
phpプログラムを作成中にエラーが発生した。
Caught exception: Serialization of 'SimpleXMLElement' is not allowed
$img_url=$PictureURL;
を
$img_url=(string)$PictureURL;
に修正した。
オブジェクトのためキャストをしてあげればString型として使用することが出来るみたいです。
execution time : 2.178 sec