本文整理匯總了PHP中check::Alert方法的典型用法代碼示例。如果您正苦於以下問題:PHP check::Alert方法的具體用法?PHP check::Alert怎麽用?PHP check::Alert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類check
的用法示例。
在下文中一共展示了check::Alert方法的14個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: saveInfo
function saveInfo($arrData, $intModify = 0, $isAlert = true, $isLastID = false)
{
global $arrGWeb;
$arr = array();
$arr = check::SqlInjection($this->saveTableFieldG($arrData));
if ($intModify == 0) {
if ($this->insertInfo($arr)) {
if ($isAlert) {
check::Alert("恭喜你,訂閱成功!係統將返回到首頁", $arrGWeb['WEB_ROOT_pre'] . '/index.php');
} else {
return true;
}
} else {
if ($isAlert) {
check::Alert("訂閱失敗", -1);
} else {
return false;
}
}
} else {
if ($this->updateInfo($arr)) {
if ($isAlert) {
check::Alert("退訂成功!係統將返回到首頁", $arrGWeb['WEB_ROOT_pre'] . '/index.php');
} else {
return true;
}
} else {
if ($isAlert) {
check::Alert("退訂失敗", $arrGWeb['WEB_ROOT_pre'] . '/index.php');
} else {
return false;
}
}
}
}
示例2: saveInfo
/**
* 保存信息內容
* @author 肖飛
* @param int $arrData 信息信息數組
* @return void
*/
function saveInfo($arrData, $intModify = 0, $isAlert = true)
{
$arr = array();
$arr = check::SqlInjection($this->saveTableFieldG($arrData));
if ($intModify == 0) {
if (!empty($_SESSION['user_id'])) {
$arr['user_id'] = intval($_SESSION['user_id']);
}
if ($this->insertInfo($arr)) {
if ($isAlert) {
check::Alert("預約成功,我們會盡快通知您,祝您生活愉快", -1);
}
check::AlertExit("", $arrGWeb['WEB_ROOT_pre'] . "/xingfu_apply/");
} else {
check::Alert("發布失敗", -1);
}
} else {
if ($this->updateInfo($arr)) {
check::Alert("修改成功!");
} else {
check::Alert("修改失敗");
}
}
}
示例3: BizSMS
if ($strReturnCode == "5") {
check::Alert("手機號或發送信息不能為空", -1);
} else {
if ($strReturnCode == "6") {
check::Alert("超過每次提交100個號碼的下發限製!", -1);
} else {
if ($strReturnCode == "7") {
check::Alert("超過XX個字,請修改後發送!", -1);
} else {
if ($strReturnCode == "8") {
check::Alert("用戶已凍結,請聯係客服人員", -1);
} else {
if ($strReturnCode == "0009") {
check::Alert("參數無效!", -1);
} else {
check::Alert("未知錯誤!", -1);
}
}
}
}
}
}
}
}
}
}
}
$objSms = new BizSMS();
$objSms->setParam($yx_arrMBizParam);
$message = $objSms->getMsgInfo();
$objSms->setParam($arrMBizParam);
示例4: saveInfo
/**
* 信息入庫保存
* @author 肖飛
* @param int $arrData 信息信息數組
* @param int $intModify 是否修改
* @param int $isAlert 是否出警告提示
* @param int $isLastID 是否返回最後ID
* @return void
*/
public function saveInfo($arrData, $intModify = 0, $isAlert = true, $isLastID = false)
{
//非法信息過濾
@(include_once __WEB_ROOT . '/data/illegal.inc.php');
if (!empty($arrGIllegal) && !empty($arrData['intro'])) {
foreach ($arrGIllegal as $k => $v) {
if ($v['pass'] == 1) {
$arrData['intro'] = str_ireplace($k, $v['replace'], $arrData['intro']);
if (!empty($arrData['title'])) {
$arrData['title'] = str_ireplace($k, $v['replace'], $arrData['title']);
}
if (!empty($arrData['summary'])) {
$arrData['summary'] = str_ireplace($k, $v['replace'], $arrData['summary']);
}
}
}
}
//關鍵詞廣告
@(include_once __WEB_ROOT . '/data/keywords.inc.php');
if (!empty($arrGKeywords) && !empty($arrData['intro'])) {
//原有鏈接的去除鏈接
foreach ($arrGKeywords as $k => $v) {
if ($v['pass'] == 1) {
$arrData['intro'] = preg_replace('/(<a.*?>\\s*)(' . $k . ')(\\s*<\\/a>)/sui', '${2}', $arrData['intro']);
}
}
//重新加上鏈接
foreach ($arrGKeywords as $k => $v) {
if ($v['pass'] == 1) {
$arrData['intro'] = str_ireplace($k, "<a class=keyad target=_blank href={$v['url']}>{$k}</a>", $arrData['intro']);
}
}
}
$arr = check::SqlInjection($this->saveTableFieldG($arrData));
if ($intModify == 0) {
if (array_key_exists('user_id', $arr) && empty($arr['user_id'])) {
$arr['user_id'] = intval($_SESSION['user_id']);
}
if ($this->insertInfo($arr)) {
if ($isAlert) {
check::Alert('發布成功!');
}
if ($isLastID) {
return $this->lastInsertIdG();
} else {
return true;
}
} else {
if ($isAlert) {
check::Alert('發布失敗!');
}
return false;
}
}
if ($intModify == 1) {
if ($this->updateInfo($arr) !== false) {
if ($isAlert) {
check::Alert('修改成功!');
}
return true;
} else {
if ($isAlert) {
check::Alert('修改失敗!');
}
return false;
}
}
if ($intModify == 2) {
if ($this->replaceInfo($arr)) {
if ($isAlert) {
check::Alert('發布成功!');
}
return true;
} else {
if ($isAlert) {
check::Alert('發布失敗!');
}
return false;
}
}
}
示例5: foreach
}
}
}
foreach ($_POST as $k => $v) {
if ($k == 'WEB_ROOT_pre') {
if (!empty($v) && $v[0] != '/') {
$v = '/' . $v;
}
}
$arrGWeb[$k] = $v;
}
$somecontent = '<?php' . "\n" . '$arrGWeb = ' . var_export($arrGWeb, true) . ';' . "\n" . '$arrGMeta = ' . var_export($arrGMeta, true) . ';' . "\n" . '?>';
if (!($handle = fopen($strFilename, 'w'))) {
check::AlertExit("錯誤:不能打開文件 {$strFilename} !", -1);
}
// 將$somecontent寫入到我們打開的文件中。
if (fwrite($handle, $somecontent) === FALSE) {
check::AlertExit("錯誤:不能寫入到文件 {$strFilename} !", -1);
}
fclose($handle);
@set_time_limit(0);
check::delTreeDirs('../..' . $arrTemp['cache_url'] . '/', false);
check::delTreeDirs($arrTemp['cache_dir'], false);
check::delTreeDirs($arrTemp['compile_dir'], false);
check::Alert("成功地寫入到文件 {$strFilename} !");
}
// 輸出到模板
$arrMOutput["smarty_assign"]['strNav'] = '網站信息設置管理';
$arrMOutput["template_file"] = "admin.html";
$arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['admin_main_dir'] . 'siteset/systemset.htm';
$objWebInit->output($arrMOutput);
示例6: saveInfo
/**
* 保存會員信息
* @author 肖飛
* @param int $arrData 新聞信息數組
* @return void
*/
function saveInfo($arrData, $intModify = 0)
{
$arr = array();
unset($arrData['password_c']);
unset($arrData['Submit']);
unset($arrData['agree']);
$arr = check::SqlInjection($this->saveTableFieldG($arrData));
if ($intModify == 0) {
return $this->insertUser($arr);
} else {
if ($this->updateUser($arr)) {
check::Alert("修改成功!");
} else {
check::Alert("修改失敗");
}
}
}
示例7: QQWry
}
$objQQWry =& new QQWry();
$objQQWry->qqwry($strIP);
$strZone = iconv('GB2312', 'UTF-8' . '//TRANSLIT', $objQQWry->Country);
$_POST['zone'] = $strZone;
$_POST['reply'] = array();
if ($_POST['summary'] == '') {
$_POST['summary'] = check::csubstr(trim(str_replace(" ", " ", str_replace("\r\n", "", strip_tags($_POST['intro'])))), 0, 100);
}
if (!array_key_exists('title', $_POST)) {
$_POST['title'] = $_POST['titleprefix'] . $_POST['longtitle'];
}
unset($_POST['titleprefix']);
unset($_POST['longtitle']);
if ($_POST['title'] != '') {
$_POST['title_md5'] = md5($_POST['title']);
}
//判斷文章信息
$arrTemp = $objWebInit->getInfoList("where title_md5='{$_POST['title_md5']}' and user_id = '{$_SESSION['user_id']}' and type_id='{$_POST['type_id']}'", "", 0, 1);
if ($arrTemp['COUNT_ROWS'] != 0) {
check::AlertExit("錯誤:相同的信息請不要重複發布!需要刷新排列的話,請登錄會員中心使用列表下方“提前”選項!", -1);
}
$objWebInit->saveInfo($_POST, 0);
if ($arrGWeb['URL_static']) {
check::Alert("", $arrGWeb['WEB_ROOT_pre'] . "/ask/index.php");
} else {
check::AlertExit("請先完善提問信息", $arrGWeb['WEB_ROOT_pre'] . "/ask/index.php");
}
} else {
check::AlertExit('對不起,新問題的內容不能為空!', -1);
}
示例8: saveInfo
/**
* 保存會員信息
* @author 肖飛
* @param int $arrData 數組
* @param int $intModify 是否修改
* @param bool $isAlert 數組
* @param bool $isLastID 數組
* @return void
*/
function saveInfo($arrData, $isModify = false, $isAlert = true, $isMcenter = false)
{
if ($isMcenter) {
$strData = check::getAPIArray($arrData);
if (!($intUserID = check::getAPI('mcenter', 'saveInfo', "{$strData}^{$isModify}^false"))) {
if ($isAlert) {
check::AlertExit("與用戶中心通訊失敗,請稍後再試!", -1);
}
return 0;
}
}
$arr = array();
$arr = check::SqlInjection($this->saveTableFieldG($arrData, $isModify));
if ($isModify == 0) {
if (!empty($intUserID)) {
$arr['user_id'] = $intUserID;
}
if ($this->insertUser($arr)) {
if (!empty($intUserID)) {
return $intUserID;
} else {
return $this->lastInsertIdG();
}
} else {
if ($blAlert) {
check::Alert("新增失敗");
}
return false;
}
} else {
if ($this->updateUser($arr) !== false) {
if ($isAlert) {
check::Alert("修改成功!");
} else {
return true;
}
} else {
if ($blAlert) {
check::Alert("修改失敗");
}
return false;
}
}
}
示例9: substr
$objShared->set('emaillog', ++$intSendNum);
$mail->MsgHTML($_POST['intro']);
$mail->AddAddress($v, substr($v, 0, strpos($v, '@')));
$intKey++;
if ($intKey == $_POST['type_id']) {
$intKey = 0;
try {
$mail->Send();
$mail->ClearAllRecipients();
} catch (Exception $e) {
}
}
}
if ($intKey != 0) {
try {
$mail->Send();
} catch (Exception $e) {
}
}
$mail->ClearAllRecipients();
$mail->ClearAttachments();
check::Alert("發送完畢!", -1);
}
//exit;
}
// 輸出到模板
$arrMOutput["smarty_assign"]['strNav'] = 'Email按照設定發送';
$arrMOutput["smarty_assign"]['arrMsmtp'] = $arrMsmtp[0];
$arrMOutput["template_file"] = "admin.html";
$arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['admin_main_dir'] . 'email/email_sender.htm';
$objWebInit->output($arrMOutput);
示例10: foreach
$rs->execute();
$arrData = $rs->fetchAll(PDO::FETCH_COLUMN);
foreach ($arrData as $key => $val) {
$strDir = ceil($val / $arrGCache['cache_filenum']);
if ($arrGWeb['URL_static']) {
if ($arrGWeb['file_static']) {
$strUrl = $domain . '/' . $arrGWeb['cache_url'] . '/' . $k . '-' . $strDir . '/' . $val . $arrGWeb['file_suffix'];
} else {
$strUrl = $domain . '/' . $k . '/detail/id-' . $val . $arrGWeb['file_suffix'];
}
} else {
$strUrl = $domain . '/' . $k . '/detail.php?id=' . $val;
}
$smi = new google_sitemap_item($strUrl, $today, $_POST['content_changefreq'], $_POST['content_priority']);
$sm->add_item($smi);
}
break;
}
}
}
$sm->build($sm_file);
check::Alert('Google Sitemaps 生成成功,http://' . $arrGWeb['host'] . '/sitemap.xml');
} else {
check::AlertExit("錯誤:文件 http://" . $arrGWeb['host'] . "/sitemap.xml 不可寫!", -1);
}
}
// 輸出到模板
$arrMOutput["smarty_assign"]['strNav'] = 'Google Sitemaps';
$arrMOutput["template_file"] = "admin.html";
$arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['admin_main_dir'] . 'seo/google_sitemap.htm';
$objWebInit->output($arrMOutput);
示例11: saveInfo
/**
* 保存會員信息
* @author 肖飛
* @param int $arrData 數組
* @param int $intModify 是否修改
* @param bool $isAlert 數組
* @param bool $isLastID 數組
* @return void
*/
function saveInfo($arrData, $isModify = false, $isAlert = true)
{
$arr = array();
$arr = check::SqlInjection($this->saveTableFieldG($arrData, $isModify));
if ($isModify == 0) {
return $this->insertUser($arr);
} else {
if ($this->updateUser($arr) !== false) {
if ($isAlert) {
check::Alert("修改成功!");
}
return true;
} else {
if ($blAlert) {
check::Alert("修改失敗!");
}
return false;
}
}
}
示例12: user
<?php
/**
* 會員欄目二星會員mail驗證文件文件
*
* @author Arthur(ArthurXF@gmail.com)
* @copyright (c) 2006 by bizeway.com
* @version $Id$
* @package ArthurXF
* @subpackage user
*/
require_once 'config/config.inc.php';
require_once "class/user.class.php";
$objWebInit = new user();
//數據庫連接參數
$objWebInit->setDBG($arrGPdoDB);
//smarty參數
$objWebInit->arrGSmarty = $arrGSmarty;
$objWebInit->db();
$strWhere = " and nike_name = '{$_GET['b']}'";
if ($objWebInit->updateUserGrade(2, $_GET['a'], $strWhere)) {
check::Alert("郵件驗證成功!");
}
// 輸出到模板
//$arrMOutput["smarty_debug"] = false;
//print_r($_REQUEST);
//$arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['main_dir'].'templats/index1.html';
//$objWebInit->output($arrMOutput);
示例13: strtolower
//數據庫連接參數
$objWebInit->setDBG($arrGPdoDB);
$objWebInit->db();
//訪問權限檢查
if (!$objWebInit->checkPopedomG($_SESSION['user_id'], 'r', 'backup')) {
check::AlertExit('對不起,您沒有讀權限', -1);
}
if ($_SERVER["REQUEST_METHOD"] == "POST") {
if (!$objWebInit->checkPopedomG($_SESSION['user_id'], 'x', 'backup')) {
check::AlertExit('對不起,您沒有執行權限', -1);
}
if (empty($_FILES['Filedata']['name'])) {
check::AlertExit("必須上傳.sql文件 !", -1);
}
$strFileExt = strtolower(strrchr($_FILES['Filedata']['name'], '.'));
if ($strFileExt != '.sql') {
check::AlertExit("僅支持SQL文件 !", -1);
}
@set_time_limit(0);
$sql_file = $_FILES['Filedata']['tmp_name'];
if ($objWebInit->import($sql_file)) {
check::Alert('數據庫導入成功!');
} else {
check::AlertExit('數據庫導入失敗!', -1);
}
}
// 輸出到模板
$arrMOutput["smarty_assign"]['strNav'] = '數據還原';
$arrMOutput["template_file"] = "admin.html";
$arrMOutput["smarty_assign"]['MAIN'] = $arrGSmarty['admin_main_dir'] . 'backup/sql_restore.htm';
$objWebInit->output($arrMOutput);
示例14: saveInfo
/**
* 保存信息內容
* @author 肖飛
* @param int $arrData 信息信息數組
* @return void
*/
function saveInfo($arrData, $intModify = 0, $blAlert = true)
{
//非法信息過濾
@(include_once __WEB_ROOT . '/data/illegal.inc.php');
if (!empty($arrGIllegal) && !empty($arrData['intro'])) {
foreach ($arrGIllegal as $k => $v) {
if ($v['pass'] == 1) {
$arrData['intro'] = str_replace($k, $v['replace'], $arrData['intro']);
if (!empty($arrData['title'])) {
$arrData['title'] = str_replace($k, $v['replace'], $arrData['title']);
}
if (!empty($arrData['summary'])) {
$arrData['summary'] = str_replace($k, $v['replace'], $arrData['summary']);
}
}
}
}
//關鍵詞廣告
@(include_once __WEB_ROOT . '/data/keywords.inc.php');
if (!empty($arrGKeywords) && !empty($arrData['intro'])) {
foreach ($arrGKeywords as $k => $v) {
if ($v['pass'] == 1) {
$arrData['intro'] = str_replace('<A class=keyad target=_blank href=\\"' . $v['url'] . '\\">' . $k . '</A>', $k, $arrData['intro']);
$arrData['intro'] = str_replace('<A class=keyad href=\\"' . $v['url'] . '\\" target=_blank>' . $k . '</A>', $k, $arrData['intro']);
$arrData['intro'] = str_replace('<a class=keyad href=\\"' . $v['url'] . '\\" target=_blank>' . $k . '</a>', $k, $arrData['intro']);
$arrData['intro'] = str_replace($k, "<a class=keyad target=_blank href={$v['url']}>{$k}</a>", $arrData['intro']);
}
}
}
$arr = check::SqlInjection($this->saveTableFieldG($arrData));
if ($intModify == 0) {
if (array_key_exists('user_id', $arr)) {
$arr['user_id'] = intval($_SESSION['user_id']);
}
if ($this->insertInfo($arr)) {
if ($blAlert) {
check::Alert('發布成功!');
}
} else {
if ($blAlert) {
check::Alert('發布失敗!');
}
}
}
if ($intModify == 1) {
if ($this->updateInfo($arr)) {
if ($blAlert) {
check::Alert('修改成功!');
}
} else {
if ($blAlert) {
check::Alert('修改失敗!');
}
}
}
if ($intModify == 2) {
if ($this->replaceInfo($arr)) {
if ($blAlert) {
check::Alert('發布成功!');
}
} else {
if ($blAlert) {
check::Alert('發布失敗!');
}
}
}
}