本文整理汇总了PHP中parametres_perso::presence_exclusion_fields方法的典型用法代码示例。如果您正苦于以下问题:PHP parametres_perso::presence_exclusion_fields方法的具体用法?PHP parametres_perso::presence_exclusion_fields怎么用?PHP parametres_perso::presence_exclusion_fields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类parametres_perso
的用法示例。
在下文中一共展示了parametres_perso::presence_exclusion_fields方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: substr
$table['niveau_hierar'] = $h_level;
$table['ill'] = $f_ill;
$table['size'] = $f_size;
$table['prix'] = $f_prix;
$table['accomp'] = $f_accomp;
$table['npages'] = $f_npages;
$table['indexation_lang'] = $indexation_lang;
if ($table['date_date'] == '0000-00-00' || !isset($date_date_lib)) {
$table['year'] = "";
} else {
$table['year'] = substr($table['date_date'], 0, 4);
}
$table['date_parution'] = $table['date_date'];
$p_perso = new parametres_perso("notices");
$nberrors = $p_perso->check_submited_fields();
$table['force_empty'] = $p_perso->presence_exclusion_fields();
if ($_FILES['f_img_load']['name'] && $pmb_notice_img_folder_id) {
$table['force_empty'] = "f_img_load";
}
//Pour la synchro rdf
if ($pmb_synchro_rdf) {
require_once $class_path . "/synchro_rdf.class.php";
$synchro_rdf = new synchro_rdf();
if ($bul_id) {
$synchro_rdf->delRdf(0, $bul_id);
}
}
if (!$nberrors) {
$myBulletinage = new bulletinage($bul_id, $serial_id);
$result = $myBulletinage->update($table);
} else {