我有一個簡單的mail()腳本,通過用逗號分隔電子郵件來動態發送到多個電子郵件。如何指示PHP數組中的最後一個指令?
<?php
$sendto = array("[email protected]", "[email protected]", "[email protected]");
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";
?>
如何識別是否(這是我的數組中的最後一塊數據)?
在一個循環的字符串concations。殺我 – 2012-08-15 02:12:32
@ColeJohnson我可以幫助你 - 你目前的位置是什麼? :) – alfasin 2012-08-15 02:14:19
@Cole:有兩種愚蠢:1.不知道; 2.嘲笑那些不認識的人。後者更大。 – khaverim 2012-08-15 02:51:31