本文整理汇总了PHP中client::loadByMail方法的典型用法代码示例。如果您正苦于以下问题:PHP client::loadByMail方法的具体用法?PHP client::loadByMail怎么用?PHP client::loadByMail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类client
的用法示例。
在下文中一共展示了client::loadByMail方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isMailExist
function isMailExist( $mail='' ) {
//echo "---> mail : " . $mail . "<br>";
$client = new client();
return ( $client->loadByMail( $mail ) ) ? true : false;
//return false;
}
示例2: client
// Récupération des informations passées en paramètres
$mon_action = $_POST["mon_action"];
$anti_spam = $_POST["as"];
//echo "--- mon_action : " . $mon_action . "<br>";
//echo "--- anti_spam : " . $anti_spam . "<br>";
$affichage_envoi_ok = "none";
$affichage_envoi_erreur = "none";
// Demande du mot de passe
if ( ( $mon_action == "mdp" ) && ( $anti_spam == "" ) ) {
$client = new client();
// Tentative de chargement du client grâce à son mail
if ( $client->loadByMail( $_POST["mail"] ) ) {
$_to = $client->mail;
//$_to = "franck_langleron@hotmail.com";
$sujet = "ADanimalerie.com - Mot de passe";
//echo "Envoi du message à " . $_to . "<br>";
$entete = "From:AD animalerie <NePasRepondre@adanimalerie.com>\n";
$entete .= "MIME-version: 1.0\n";
$entete .= "Content-type: text/html; charset= iso-8859-1\n";
//$entete .= "Bcc: franck_langleron@hotmail.com\n";
$corps = "";
$corps .= "Bonjour " . utf8_encode( $client->prenom ) . ",<br><br>";
$corps .= "Voici vos identifiants :<br>";
$corps .= "Login : <b>" . $client->mail . "</b><br>";