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.
i に基づいて変数に名前を付けるループを作成したいので、$l_name0、$lname1 などにする必要があります。
for ($i=0; $i<=2; $i++) { $L_NAME.$i='name'.$i; $L_AMT.$i='amt'.$i; $L_QTY.$i='qty'.$i; echo $L_NAME.$i; }
どうすればこれを行うことができますか?
これがあなたが間違ったことです
for ($i=0; $i<=2; $i++) { ${'L_NAME'.$i} = 'name'.$i; ${'L_AMT'.$i} = 'amt'.$i; ${'L_QTY'.$i} = 'qty'.$i; echo $L_NAME.$i; }