Bonjour,
Ma version :
PHP Version 7.3.29-1~deb10u1
J'ai fait plusieurs essais mais je n'arrive pas à afficher les erreurs PHP.
actuellement dans mon fichier php.ini :
Code ini : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 [PHP] error_reporting=E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT display_errors = On ;;;;;;;;;;;;;;;;;;; ; About php.ini ; ;;;;;;;;;;;;;;;;;;; ; PHP's initialization file, generally called php.ini, is responsible for ; configuring many of the aspects of PHP's behavior. ...
-----------------------------------------------------------------------------------------------------------------------------------------------------
j'ai fini par y arriver :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 error_reporting=E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT display_errors = On ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);
Partager