0
我在這裏打牆。我使用貝寶並行支付API(PHP),我想與存儲在$_SESSION['owneremails']
PHP - 使用存儲在會話中的複選框數組值填充數組
$receiverEmailArray = array(
''.$_SESSION['owneremails'].'',
'[email protected]'
);
複選框陣列數據(電子郵件地址)來填充內部parallel.php
陣列$receiverEmailArray
我想所有者電子郵件地址,裏面填充$receiverEmailArray
([email protected]
爲常數),最後看這樣:
$receiverEmailArray = array(
'[email protected]', '[email protected]', '[email protected]',
'[email protected]'
);