作者:虫虫2彡0120106 | 来源:互联网 | 2024-12-04 03:49
I have the following array Array ( ['6'] => mobile )
while i printing my array with print_r
function of php. I need to separate the index and value of the array in two different variables.
当我使用php的print_r函数打印我的数组时,我有以下数组Array(['6'] => mobile)。我需要在两个不同的变量中分离数组的索引和值。
The actual code is
实际的代码是
$ques=$_POST['selector'];
$count = count($ques);
for($i=0; $i <$count; $i++)
{
print_r ($ques)."\n";
}
How can i do this?
我怎样才能做到这一点?
3 个解决方案