作者:国国国国涛 | 来源:互联网 | 2023-09-14 16:00
【导读】第一种:header(location:你的上一页的路径);注意这个函数前不能有输出第二种:header(location:getenv(HTTP_REFERER));
【导读】第一种:header(location:你的上一页的路径); 注意这个函数前不能有输出第二种:header(location: getenv("HTTP_REFERER")); 返回其调用
第一种:
header(location:你的上一页的路径); // 注意这个函数前不能有输出
第二种:
header(location:.getenv("HTTP_REFERER")); // 返回其调用页面
第三种:
echo""; //返回上一页,弹窗确认
第四种:在第三种上改变:
echo""; //返回上一页,无需弹窗确认
其他1:
return json_encode(array('code'=>1,status=>"删除成功")); 返回个这种格式的
其他2:
javasecipt::confirmurl("网址",'应该是提示语')
其他3:
showmessage(L('delete').L('success'), HTTP_REFERER);
【示例】
/**
* 批量删除附件 自定义
*/
public function public_delete_all_zxb() {
$del_arr = array();
$del_arr = $_POST['aid'];
$attachment_index = pc_base::load_model('attachment_index_model');
if(is_array($del_arr)){
foreach($del_arr as $v){
$aid = intval($v);
$this->attachment->delete(array('aid'=>$aid));
$attachment_index->delete(array('aid'=>$aid));
}
//showmessage(L('delete').L('success'), HTTP_REFERER);
//return json_encode(array('code'=>1,status=>"删除成功"));
/*echo"";*/
echo""; //返回上一页
}
}