私の最初の機能:
function db_connect_error_mail ($txt) {
mail(admin_email,mail_subject01,$txt);} //1st three variables come from constants at config.php
そして2番目の機能:
function connectdb() {
$dbc = mysqli_connect (db_host, db_user, db_password, db_name); //variables come from constants at config.php
if (!$dbc)
{
$txt = mysqli_connect_errno().mysqli_connect_error();
db_connect_error_mail($txt);
unset ($txt);
die('custom error message to inform viewer');
} else
{
return $dbc;
}
}
私の質問:
index.php で connectdb() を呼び出すだけで大丈夫ですか? データベース接続を設定できなかった場合、メールも届きますか? (サーバーのメール機能は常時動作しているものとします)