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.
他の変数定義内に変数を追加するにはどうすればよいですか?
次に例を示します。$cars_list_ VARIABLE HERE [$car]
$cars_list_ VARIABLE HERE [$car]
できるよ:
${'cars_list_' . 'other_var'} = "stuff"; echo $car_list_other_var;
「もの」を返します