循環我有一個名爲$user_ids
一個數組,打印爲:構建簡單的PHP的for-each從陣列
Array ([0] => stdClass Object ([user_id] => 1) [1] => stdClass Object ([user_id] => 2))
我想執行send_msg
數組中的每一個user_id
。在上面的例子中,我想達到這個相當於:
send_msg(1, $body_input, $subject_input);
send_msg(2, $body_input, $subject_input);
這是我所嘗試過的,但它不起作用。
foreach ($user_ids as $user_N){
send_msg($user_N, $body_input, $subject_input);
}