问题描述:
我想要做的是将动态创建的变量从循环传递给 php.ini 中的函数。更具体地说,我使用了一个 for 循环来创建变量并将数据分配给它们。然后使用 for 循环将所有变量串在一起。然后将字符串传递给 multisort_array 函数并分解字符串以使用变量。我不确定我做错了什么。
问题:
如何在不知道要创建多少的情况下将一堆动态创建的变量传递给排序函数?那是我的错觉。
代码:
$arr2[0] = "100::HOMEDEPOT";
$arr2[1] = "200::WALMART";
$arr2[2] = "300::COSTCO";
$arr2[3] = "400::WALGREENS";
$arr2[4] = "500::TACO BELL";
// explodes first value of $arr2
$tmp = explode("::",$arr2[0]);
// determines how many dynamic variables to create
for($k=0;$k<count($tmp);$k++){
${"mArr".$k} = Array();
}
// loops thru & assigns all numbers to mArr0
// loops thru & assigns all names to mArr1
for ($k=0;$k<count($arr2);$k++){
$tmp = explode("::",$arr2[$k]);
for($l=0;$l<count($tmp);$l++){
${"mArr".$l}[$k] = $tmp[$l];
}
}
// Will add a for loop to combine the variables into string
$param = "$mArr1,$mArr0";
// send the string to array_multisort to be sorted by name
// have tried the following options:
// 1. array_multisort(explode(",",$param));
// 2. call_user_func_array(array_multisort,explode(",",$param));
// both do not sort & give me an error.
预先感谢您的帮助。我愿意接受有关其他方式的任何建议,但如果可能的话,我希望它出现在 php 代码中。