Deprecated: Automatic conversion of false to array is deprecated inの対応

概要説明

PHP8.1 以降でfalse から配列への自動変換は非推奨になったことが原因のエラー。型変換の際には要注意です。

// エラーとなるパターン
$arr = false;
$arr[] = 2;

型を変える場合は一度初期化またはunset

$arr = false;
unset($arr);
$arr[] = 2;

関連機能

  1. Warning: file_get_contents(): SSL operation failed with codeの対応

  2. Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘xxx̵…

  3. this will throw an Error in a future version of PHPの対応

サイドバー

よく使うカスタマイズ

最近の記事

アニメの名言集

あまり強い言葉を使うなよ
弱く見えるぞ

BLEACH
by 藍染惣右介

Profile

PAGE TOP