電子メールをコンマで区切って複数の電子メールに動的に送信する単純な mail() スクリプトがあります。
<?php
$sendto = array("email@gmail.com", "email@zoho.com", "email@mail.usf.edu");
foreach ($sendto as $email)
{
if ($email is the last indice in the array..) // <-- here
$to = $email;
else
$to = $email . ', ';
}
$subject = "test message";
$msg = "this is a test";
if (mail($to, $subject, $msg))
echo "message sent";
else
echo "uh oh";
?>
(これが配列内の最後のデータである) かどうかを特定するにはどうすればよいですか?