PHP | Codeigniter 重定向 |无法修改标头信息

Posted

技术标签:

【中文标题】PHP | Codeigniter 重定向 |无法修改标头信息【英文标题】:PHP | Codeigniter Redirect | Cannot modify header information 【发布时间】:2018-05-22 10:45:43 【问题描述】:

我在尝试使用 CodeIgniter 中的 redirect() 函数时遇到问题。 错误是(当我尝试调用addMed() 函数时)

A php Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /a_directory/CabUser.php:46)
Filename: helpers/url_helper.php
Line Number: 561
Backtrace:
File: /a_directory/CabUser.php> 
Line: 48
Function: redirect
File: /a_directory/index.php
Line: 315
Function: require_once

我的文件“CabUser.php”

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class CabUser extends CI_Controller 

  function __construct() 
    parent::__construct();
    $this->load->database();
  

  public function index() 
    if ($this->session->has_userdata('for_login')) 
        $userPrivelegies = $this->session->userdata['for_login']['privelegies'];
        if($userPrivelegies) 
            redirect('CabMed', 'refresh');
        
        else 
            $this->load->model('Cab_model');
              $this->Cab_model->getUserData();
        
    
    else 
        redirect('login');
    
  

  function logout() 
    if ($this->session->has_userdata('for_login')) 
      $this->session->sess_destroy('for_login');
    
    redirect('home', 'refresh');
  

  function addMed() 
    $data['numePrenumeMedic'] = $this->input->post('medic');
    $username = $this->session->userdata['for_login']['username'];
    $this->db->where('username', $username);
    $query = $this->db->get('Users');
    $ID = $query->row()->ID;

    $this->db->where('ID', $ID);
    $this->db->update('UserData', $data);

    echo "<script>
            alert('Succes!!!');
          </script>";

    redirect('CabUser', 'refresh'); //here's the problem
  

  function upload() 
    if ($this->input->post('update')) 
      $data['numePrenume'] = $this->input->post('name');  
      $data['numePrenume'] = $this->input->post('name');
      $data['facebook'] = $this->input->post('facebook');
      $data['ok'] = $this->input->post('ok');
      $data['instagram'] = $this->input->post('instagram');
      $data['datanasterii'] = $this->input->post('year') . '-' . $this->input->post('month') .'-' . $this->input->post('day');
      $data['telefon'] = $this->input->post('telefon');
      $data['adresa'] = $this->input->post('address');
      $data['sex'] = $this->input->post('sex');

      $sess = $this->session->userdata('for_login', 'username');

      $this->db->where('username',$sess['username']);
      $query = $this->db->get('Users');

      $ID = $query->row()->ID;

      $this->db->where('ID', $ID);
      $this->db->update('Users', $data);

      $this->db->where('ID', $ID);
      $this->db->set('numePrenumePacient', $data['numePrenume']);
      $this->db->update('Pacienti');    

      echo "<script>
            alert('Succes!!!');
          </script>";
      redirect('CabUser', 'refresh');
    
    else 
      echo "<script>
            alert('Error to update. \n Try later please...);
          </script>";
      redirect('CabUser', 'refresh');
    


  


?>

【问题讨论】:

回显后无法重定向。查看php文档中的header函数 【参考方案1】:

你的解决方案是,

删除echo "<script> alert('Succes!!!'); </script>"; 来自您使用 redirect() 函数的任何地方的代码。因为重定向函数使用php的header函数并且在任何header之前,你不应该回显或发送任何东西到浏览器。

这就是错误所说的。

【讨论】:

以上是关于PHP | Codeigniter 重定向 |无法修改标头信息的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Codeigniter 中重定向和删除 index.php [重复]

在没有 index.php 的情况下,codeigniter 重定向不起作用?

PHP CodeIgniter:重定向Internet Explorer访问者

Codeigniter URL 重定向而不添加 index.php

来自表单输入的 CodeIgniter 重定向

在生产服务器 codeigniter 3.1.2(PHP) Session Destroy 上自动从 facebook graph API 重定向?