本文整理汇总了PHP中CFunctions::addslashes方法的典型用法代码示例。如果您正苦于以下问题:PHP CFunctions::addslashes方法的具体用法?PHP CFunctions::addslashes怎么用?PHP CFunctions::addslashes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CFunctions
的用法示例。
在下文中一共展示了CFunctions::addslashes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: explode
$text = $texte['text'] ;
$arr_pj = explode("|", $pj);
$text = $text . '<p style="text-align: center;"><a href="'.URL_RACINE.'/adminpanther/src/email.php?id=' . $iEmailId . '">Visualiser cette email comme page HTML</a></p>';
$text = $text . CDesinscription::insert_link();
$body = CNmail::build_html_body($texte['style'], CFunctions::stripslashes($text));
if(!CMail::send_mailing($liste_email, $texte['nom'], $body, $expediteur, $arr_pj)) {
$msginfo = "Echec d'envoi d'email. Veuillez réessayer ultérieurement";
break;
}
$obj = new CTableEmail(array('id' => $iEmailId, 'expediteur'=>CFunctions::addslashes($expediteur), 'destinataire'=>CFunctions::addslashes($destinataire), 'nom'=>CFunctions::addslashes($texte['nom']), 'text'=>mysql_real_escape_string(CFunctions::addslashes($body)), 'pj'=>CFunctions::addslashes($pj), 'etat'=>1, 'date'=>date("Y-m-d H:i:s")));
if(is_numeric($iEmailId)) $obj->update(); else $obj->insert();
$obj->update();
$msginfo = "Email bien envoyé<br/>";
}
// --- FIN envoye mail
$msginfo = "utilisateur bien modifié";
$a = 0;
break;
case 6 : // Filtre avancé
CSession::save($_GET);
break;
case 7 : //Groupe
示例2: while
$oRes = CBdd::select($zSql);
while ($oPays = mysql_fetch_assoc($oRes)): ?>
<option value="<?php echo $oPays['id'] ?>" <?php if ($pays_id!='%%%') {
if($pays_id == $oPays['id'] ) echo "selected";
}?>><? echo $oPays['nom'] ?></option>
<?php endwhile; ?>
</select>
</p>
</div>
<div class="floatleft" style="margin-left:13px;">
<p>
<label style="width:58px" style="margin-left:-15px">Commune</label>
<select onchange="this.form.submit();" name="filtre_commune" id="filtre_commune" style="width:145px;">
<option value="%%%">Tout</option>
<?php
$requetSql = " SELECT DISTINCT commune.* FROM commune INNER JOIN entreprise on commune.id_com = entreprise.commune_alias where id_com <> 0 ".$filtre_groupe." AND pays_com LIKE '" . CFunctions::addslashes($pays_id) . "' ORDER BY nom_com ASC";
print_r($requetSql);
$Resultat = CBdd::select($requetSql) ;
while ($oCom = mysql_fetch_assoc($Resultat)): ?>
<option value="<?php echo $oCom['id_com'] ?>" <?php if ($filtre_commune!='%%%') {
if (Cfunctions::force_encode($filtre_commune) == utf8_decode($oCom['id_com'])) echo 'selected';
}?>><?php $zsql = " SELECT nom_com FROM commune WHERE id_com='".$oCom['id_com']."'";
$commune = CBdd::select_one($zsql,'nom_com');
echo utf8_encode($commune) ?></option>
<?php endwhile; ?>
</select>
</p>
</div>
<div class="floatleft">
<p>
<label> Secteur</label>
示例3: if
<option value="<? echo $oPays['id_pays'] ?>" <? if ($pays_id!='%%%') {
if($pays_id == $oPays['id_pays'] ) echo "selected";
}?>><? echo $oPays['nom'] ?></option>
<? endwhile; ?>
</select>
</p>
</div>
<div class="floatleft" style="margin-left:13px;">
<p>
<label style="width:58px" style="margin-left:-15px">Commune</label>
<select onchange="this.form.submit();" name="filtre_commune" id="filtre_commune" style="width:145px;">
<option value="%%%">Tout</option>
<?
// Récupération commune appartenant à une entreprise
$requetSql = " SELECT DISTINCT commune.* FROM commune INNER JOIN entreprise on commune.id_com = entreprise.commune_alias INNER JOIN departement ON departement.id_dep=commune.departement INNER JOIN pays ON pays.id_pays=departement.pays WHERE id_com <> 0 ".$filtre_groupe." AND pays LIKE '" . CFunctions::addslashes($pays_id) . "' ORDER BY nom_com ASC";
//echo $requetSql;
$Resultat = CBdd::select($requetSql) ;
while ($oCom = mysql_fetch_assoc($Resultat)): ?>
<option value="<? echo $oCom['id_com'] ?>" <? if ($filtre_commune!='%%%') {
if (Cfunctions::force_encode($filtre_commune) == utf8_decode($oCom['id_com'])) echo 'selected';
}?>><? $commune = CTableUtilisateur::recupnomCom('commune','nom_com', 'id_com', $oCom['id_com']);
echo utf8_encode($commune) ?></option>
<? endwhile; ?>
</select>
</p>
</div>
<div class="floatleft">
<p>
<label> Secteur</label>
<select name="filtre_secteur" id="filtre_secteur" onchange="this.form.submit();" style="width:145px;">