0
私は1つのクエリを使用していますが、emilでグループを追加できないので、他のオプションを使用していますが、mt4_account_noを使用してcontact_emailをグループ化する方法を理解できません。同じ値としてマージする方法は?
私の配列の言及ブロー:
[0] => Array
(
[contact_fullName] => Walt Wuller
[contact_email] => [email protected]
[mt4_account_no] => 12291
[balance] => 0
)
[1] => Array
(
[contact_fullName] => Walt Wuller
[contact_email] => [email protected]
[mt4_account_no] => 12293
[balance] => 0
)
[2] => Array
(
[contact_fullName] => Walt Wuller
[contact_email] => [email protected]
[mt4_account_no] => 12289
[balance] => 7480.69
)
[3] => Array
(
[contact_fullName] => Walt Wuller
[contact_email] => [email protected]
[mt4_account_no] => 12292
[balance] => 0
)
しかし、私は次のように作成したい:
Array
(
[0] => Array
(
[contact_fullName] => Walt Wuller
[contact_email] => [email protected]
[mt4_account_no] => Array
(
[0] => 12291
[1] => 12293
[2] => 12289
[3] => 12292
)
[balance] => Array
(
[0] => 0
[1] => 0
[2] => 7480.69
[3] => 0
)
)
)
それでは、どのように私はこの種の配列を作成することができます。
あなたは私任意のは、あなたが最良の答えとして私の答えを選択してくださいよりも、私の答えのような場合は私に –
に連絡を助けるのvtiger CRMの開発者だ、それは罰金 作業コスタスをはSergiu感謝:) –