本文整理汇总了PHP中CI_Email::valid_email方法的典型用法代码示例。如果您正苦于以下问题:PHP CI_Email::valid_email方法的具体用法?PHP CI_Email::valid_email怎么用?PHP CI_Email::valid_email使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CI_Email
的用法示例。
在下文中一共展示了CI_Email::valid_email方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
* modules. Package maintainers should set AMPEXTERNPACKAGES to true in /etc/amportal.conf.
* Optionally, the other way is to remove the below lines, and instead just define
* EXTERNAL_PACKAGE_MANAGEMENT as 1. This prevents changing the setting from amportal.conf.
*/
if (!isset($amp_conf['AMPEXTERNPACKAGES']) || $amp_conf['AMPEXTERNPACKAGES'] != 'true') {
define('EXTERNAL_PACKAGE_MANAGEMENT', 0);
} else {
define('EXTERNAL_PACKAGE_MANAGEMENT', 1);
}
$modulef = module_functions::create();
// Handle the ajax post back of an update online updates email array and status
//
if ($quietmode && isset($_REQUEST['update_email'])) {
$update_email = $_REQUEST['update_email'];
$ci = new CI_Email();
if (!$ci->valid_email($update_email) && $update_email) {
$json_array['status'] = _("Invalid email address") . ' : ' . $update_email;
} else {
$cm = cronmanager::create($db);
$cm->save_email($update_email);
$cm->set_machineid($_REQUEST['machine_id']);
$json_array['status'] = true;
}
header("Content-type: application/json");
echo json_encode($json_array);
exit;
}
$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
global $active_repos;
$loc_domain = 'amp';
if (isset($_REQUEST['check_online'])) {