Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$_SESSION[{'\'testingrecord'.$testingrecordsfec.'\''}]
これはもともとこのように見えました
${'testingrecord'.$testingrecordsfec}
ただし、ここで作成した変数をグローバル $_SESSION に追加する必要があります
この変数は、配列内の各項目に対して作成されます。
IE
$testingrecord0 $testingrecord1 $testingrecord2
{}と を取り外し\'ます。
{}
\'
$_SESSION['testingrecord'.$testingrecordsfec];
$_SESSIONは他の配列と同様であり、キーは文字列または整数になる任意の式にすることができます。
$_SESSION