私には機能があります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 クエリ部分で機能する理由がわかりませんが、結果を配列に追加しようとすると、次の 1 行では機能しません。