我遇到了一种情况,我将东西放入这样的数组中:
$current_pms[] = array(
'from' => sofa_get_username($current_user->ID),
'to' => $valid_user,
'subject' => $subject,
'message' => $message,
'status' => 'unread',
'time' => current_time('mysql', $gmt = 0)
);
如何用自己的唯一 ID 标记每个条目,以便以后获取?
谢谢