本文整理汇总了PHP中Dialog::AlertNReplace方法的典型用法代码示例。如果您正苦于以下问题:PHP Dialog::AlertNReplace方法的具体用法?PHP Dialog::AlertNReplace怎么用?PHP Dialog::AlertNReplace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dialog
的用法示例。
在下文中一共展示了Dialog::AlertNReplace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
if ($main) {
$last_id = 'r=' . $root . ',id1=' . $main . ',id2=' . $clear['m_id'];
} else {
if ($root) {
$last_id = 'r=' . $root . ',id1=' . $clear['m_id'];
} else {
$last_id = 'r=' . $clear['m_id'];
}
}
$tbn_write = Write::Inst()->TBN();
$sql = " SELECT wr_no, last_id FROM {$tbn_write} WHERE bo_no=0 AND last_id LIKE '{$stx}%' ";
$write_list = DB::Get()->sql_query_list($sql);
foreach ($write_list as $v) {
DB::Get()->update($tbn_write, array('last_id' => str_replace($stx, $last_id, $v['last_id'])), " WHERE wr_no='{$v['wr_no']}' ");
}
//*
// 관리자페이지 아이디 변경 체크
if (Config::Inst()->path_admin == $data['m_id']) {
$change_admin_page = true;
DB::Get()->update(Config::Inst()->TBN(), array('cf_value' => $clear['m_id']), " WHERE cf_id='path_admin' ");
}
//*/
}
// 회원정보 업데이트
$this->Sql('update', GV::Number($this->KN()), $clear);
if ($change_admin_page) {
Dialog::AlertNReplace("관리자 페이지 주소가 변경되었습니다.\n메인화면으로 이동합니다.", Path::Root());
} else {
Url::GoReplace($this->Link('list'));
}
exit;