PHP Shows a Blank White Screen: How to Fix it to Get Errors to Display

Опубликовано: 16 Октябрь 2024
на канале: Dave Hollingworth
24,385
392

Sometimes when developing, PHP shows you a blank, white page. Learn why this happens and how to fix it.

Please consider supporting my channel:
☕ https://ko-fi.com/davehollingworth

PHP code to display all errors:

ini_set("display_errors", "1");
ini_set("display_startup_errors", "1");
error_reporting(E_ALL);

Code in a Gist to show PHP errors:
https://gist.github.com/daveh/299d364...

00:00 PHP blank screen
00:16 PHP settings
00:29 PHP code to fix it

#php #shorts