Yönlendirme önce hataları göster

0 Cevap php

When i do a redirect, no errors are shown. I use codeigniter framework and there's

error_reporting(E_ALL);
ini_set('display_errors', 1);

in my index.php file. When something is breaking in my code(e.g.some 'undefined index' error) and i do a redirect to another page - the error isn't showing. How to avoid this - break the redirect and show the errors?

fonksiyonu sadece basit bir başlık olduğunu yönlendirme:

header('Location: ' . $uri);

Ben bu çıkış tamponları ile bağlantılı bir şeydir varsayarak yaşıyorum. I () ob_start kullanarak (index.php) tampon açmak için denedim ama hiçbir şey olmuyor.

Teşekkürler.

0 Cevap