我有一个功能getPrice($_SESSION['external']);
function getPrice($position)
{
//Here I perform SQL functions using $position['arraykey']
//This works
//Here I want to add to the array
//This doesn't work
$position[0]['pricing'] = $sql_result;
}
当我使用$position
它时,它不会添加到数组中,但是当我使用它时$_SESSION['external']
它工作正常。
我不确定为什么$position
在我的函数的 SQL 查询部分中有效,但是当我尝试将结果添加到数组时,下面一行没有。