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.
変数を作成して、別の変数の内容にちなんで名前を付けようとしています。例えば
$newname = "x"; //dosomething to create the variable $x
それらは変数変数と呼ばれます:
${$newname} = 'stuff';
さらにある場合は、配列とextractそこからの変数の使用を検討してください。
extract
$vars = array(...); // keys = variable name, value = variable value extract($vars, EXTR_SKIP);
これをチェックして :
$a = 'hello'; $$a = 'world'; echo "$a ${$a}"; echo "$a $world";
役に立つことを願っています。