Quantcast
Channel: rfcタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 193

【PHP8.3】static変数に動的値を突っ込めるようになる

$
0
0
PHPにはstatic変数という仕組みが存在します。 function foo(){ static $i = 1; echo $i++; } foo(); // 1 foo(); // 2 foo(…

Viewing all articles
Browse latest Browse all 193

Trending Articles