rNote-re を php 8.4.3 に対応 2025-02-15 (土) 20:33:33+09:00

ソフトウェア

php のバージョンを 8.3.10 から 8.4.3 に上げたら、

Deprecated: Mobile_Detect::__construct(): Implicitly marking parameter $headers as nullable is deprecated
のメッセージが出るようになった。


PHP RFC: Deprecate implicitly nullable parameter types日本語の解説の例:【PHP8.4】メソッド引数のデフォルトnullがついに禁止されるで説明されているように、引数のデフォルト null が php 8.4 から非推奨になったためだったので、Mobile_Detect.php の 600 行目からの __construct() の引数の記述部分を、

   public function __construct(     array $headers = null,     $userAgent = null   ) {

から、
   public function __construct(     ?array $headers,     ?string $userAgent   ) {

のように?T構文に変更し対応した。

${var}から{$var}への変更と、クラス内の変数のうち宣言のなかったものに宣言を追加し、以下についても修正した。

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in rnotepad5.php on line 450

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in rnotepad5.php on line 581

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in rnotepad5.php on line 597

Deprecated: Creation of dynamic property rnotepad5::$term is deprecated in rnotepad5.php on line 244

Deprecated: Creation of dynamic property rnotepad5::$time_out is deprecated in rnotepad5.php on line 246

Deprecated: Creation of dynamic property tb_tool::$term is deprecated in tb_tool.php on line 19

Deprecated: Creation of dynamic property tb_tool::$time_out is deprecated in tb_tool.php on line 21

Deprecated: Creation of dynamic property entries_list::$def_line is deprecated in entries_list.php on line 71

Deprecated: Creation of dynamic property cmntcnfm::$def_line is deprecated in cmntcnfm.php on line 69

お名前:

URL または e-mail (option):

CAPTCHA Image 左の画像内の式の計算結果を入力:
TWEET

この記事のリンク用URL&トラックバックURL : https://red-souls.jp/ichounoki/rnote/software/20250215_203332966313.htm

キーワード: rNote-re