CodeIgniter Forums
Please, remove. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Feature Requests (https://forum.codeigniter.com/forumdisplay.php?fid=29)
+--- Thread: Please, remove. (/showthread.php?tid=75721)



Please, remove. - falko - 03-09-2020

Please, remove laminas/laminas-escaper. Use htmlentities($string, ENT_QUOTES | ENT_HTML5, 'UTF-8').

Please, remove kint-php/kint. Use var_dump() with xDebug.


RE: Please, remove. - kilishan - 03-10-2020

Laminas escaper is a much more secure than htmlentities alone, and takes into account many other attacks, including things like charset manipulations, etc.

Kint is also much more powerful than var_dump and can show much more information.

Sorry - they're both staying.