facebook twitter hatena line email

「Php/php8」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行8: 行8:
  
 
修正前
 
修正前
{{if $request.key}}
+
<pre>
 +
{{if $request.key}}
 +
</pre>
 
修正後
 
修正後
{{if isset($request.key)}}
+
<pre>
 +
{{if isset($request.key)}}
 +
</pre>

2026年4月3日 (金) 04:21時点における版

クラス名の関数をconstructとして完全に使えなくなった

php7までは非推奨で、php8からは、完全に使えない。 __construnct()にする。

smartyのテンプレの使ってない変数の警告

エラー詳細

Warning: Undefined array key "key" 

修正前

{{if $request.key}}

修正後

{{if isset($request.key)}}