标签: php
我有以下变量:
$something = 'whatever'; $hello = array(); $test = 123;
我希望将它们推送到这样的数组中:
$data['something'] = 'whatever'; $data['hello'] = array(); $data['test'] = 123;
我想知道是否有某种PHP函数(类似于array_push())可以将变量推入数组,使用变量名作为键值?
array_push()
答案 0 :(得分:6)
是的。 compact()就是这样做的。
compact()