我有這個PHP腳本:配售SQL查詢結果到一個數組
<?php
$gregorianMonth = date(n);
$gregorianDay = date(j);
$gregorianYear = date(Y);
$jdDate = gregoriantojd($gregorianMonth,$gregorianDay,$gregorianYear);
$hebrewMonthName = jdmonthname($jdDate,4);
$hebrewDate = jdtojewish($jdDate);
list($hebrewMonth, $hebrewDay, $hebrewYear) = split('/',$hebrewDate);
?>
<?php
$table_name = "candle_number";
$data = $wpdb->get_results("SELECT email FROM `{$table_name}` WHERE `datehebrew` LIKE '%%$hebrewDay%%' AND `datehebrew` LIKE '%%$hebrewMonth%%' AND date_pref = \"hebrew\"");
foreach($data as $rs){
echo "
<p>{$rs->email}</p>
";hat I can
$i++;
}
?>
而我最初的想法是使用foreach
循環與CURL
Mailchimp API,以每封電子郵件發送給我的終點,那種一個。
但我知道foreach
可能沒有循環過程,它不是很乾淨。我認爲更好的解決方案是將每個結果放入一個數組,然後發送curl中的THAT數組,因爲MC API將接受它。
我仍然是一個新手,雖然所以這是我卡住的地方。那麼如何從查詢中獲取這些結果並將它們放入一個字符串?
添加到陣列與'[]'或'array_push'完成。請按照手冊。 –