構成ファイルに次のような構造があります。
<?php
if (true) {
$nonstatic = 1;
static $config = 1;
}
else {
$nonstatic = 2;
static $config = 2;
}
echo $nonstatic;
echo $config;
?>
では、ステートメントのこの部分が false で $nonstatic に 1 が含まれているのに、なぜ $config に 2 が含まれているのでしょうか? バグですか?