Hướng dẫn e_error php - e_error php

(Php 4, Php 5, Php 7, Php 8)

Error_Reporting - Các bộ lỗi PHP được báo cáoSets which PHP errors are reported

Sự mô tả

Error_Reporting (? int $error_level = null): int(?int $error_level = null): int

Thông số

error_level

Mức độ lỗi mới. Nó có một hoặc một hằng số được đặt tên. Sử dụng các hằng số được đặt tên được khuyến khích mạnh mẽ để đảm bảo khả năng tương thích cho các phiên bản trong tương lai. Khi các mức lỗi được thêm vào, phạm vi số nguyên tăng, do đó các mức lỗi dựa trên số nguyên cũ sẽ không luôn luôn hoạt động như mong đợi.

Các hằng số mức lỗi có sẵn và ý nghĩa thực tế của các mức lỗi này được mô tả trong các hằng số được xác định trước.

Trả về giá trị

Trả về mức ERROR_REPORTING cũ hoặc mức hiện tại nếu không có tham số error_level được đưa ra.

Thay đổi

Phiên bảnSự mô tả
8.0.0 Error_Reporting (? int $error_level = null): int

Thông số

error_levelerror_reporting() examples

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>

Mức độ lỗi mới. Nó có một hoặc một hằng số được đặt tên. Sử dụng các hằng số được đặt tên được khuyến khích mạnh mẽ để đảm bảo khả năng tương thích cho các phiên bản trong tương lai. Khi các mức lỗi được thêm vào, phạm vi số nguyên tăng, do đó các mức lỗi dựa trên số nguyên cũ sẽ không luôn luôn hoạt động như mong đợi.

Các hằng số mức lỗi có sẵn và ý nghĩa thực tế của các mức lỗi này được mô tả trong các hằng số được xác định trước.

Trả về giá trịE_ALL constant.

Trả về mức ERROR_REPORTING cũ hoặc mức hiện tại nếu không có tham số error_level được đưa ra.

  • Thay đổi
  • Phiên bản
  • error_level bây giờ là không thể.
  • Ví dụ

Ví dụ #1 Error_Reporting () Ví dụ

Ghi chú

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:

- create a new file in which you include the faulty script:

null0

null1

null2

Mẹo

Truyền trong giá trị -1 sẽ hiển thị mọi lỗi có thể xảy ra, ngay cả khi các cấp độ và hằng số mới được thêm vào các phiên bản PHP trong tương lai. Hành vi tương đương với việc vượt qua E_ALL hằng số.

null3

null4

null5

null6

null7

Xem thêm

Chỉ thị Display_errors

null8

null9

error_level0

null2

Chỉ thị HTML_ERRORS

Chỉ thị XMLRPC_ERRORS

error_level2

error_level3

error_level4

null2

ini_set () - Đặt giá trị của tùy chọn cấu hình

Thông tin tại Hephoz Dot de ¶

error_level6

error_level7

error_level8

error_level9

error_level0

null2

14 năm trước

jcastromail tại yahoo dot es ¶

error_level2

error_level3

error_level4

error_level5

null2

1 năm trước

Dave tại Davidhbrown dot chúng tôi ¶

error_level7

error_level8

null2

16 năm trước

Piancastelli Fernando

error_level0

error_level1

error_level2

error_level3

error_level4

null2

17 năm trước

Luisdev ¶

error_level6

error_level7

null2

4 năm trước

Luisdev ¶

error_level9

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
0

null2

4 năm trước

Thông tin tại Hephoz Dot de ¶

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
2

14 năm trước

jcastromail tại yahoo dot es ¶

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
3

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
4

null2

1 năm trước

Ghi chú

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
6

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
7

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
8

// Turn off all error reporting
error_reporting(0);// Report simple running errors
error_reporting(E_ERROR E_WARNING E_PARSE);// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR E_WARNING E_PARSE E_NOTICE);// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);// Report all PHP errors
error_reporting(E_ALL);// Report all PHP errors
error_reporting(-1);// Same as error_reporting(E_ALL);
ini_set('error_reporting'E_ALL);?>
9

null2

Mẹo

Truyền trong giá trị -1 sẽ hiển thị mọi lỗi có thể xảy ra, ngay cả khi các cấp độ và hằng số mới được thêm vào các phiên bản PHP trong tương lai. Hành vi tương đương với việc vượt qua E_ALL hằng số.

-11

-12

-13

-14

-15

-16

-17

null2

Xem thêm

Chỉ thị Display_errors

-19

E_ALL0

E_ALL1

null2

Chỉ thị HTML_ERRORS

Dave tại Davidhbrown dot chúng tôi ¶

E_ALL3

16 năm trước

Chỉ thị XMLRPC_ERRORS

E_ALL4

ini_set () - Đặt giá trị của tùy chọn cấu hình

Chỉ thị XMLRPC_ERRORS

E_ALL5

E_ALL6

E_ALL7

E_ALL8

E_ALL9

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:0

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:1

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:2

null2

ini_set () - Đặt giá trị của tùy chọn cấu hình

Thông tin tại Hephoz Dot de ¶

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:4

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:5

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:6

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:7

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:8

14 năm trước

jcastromail tại yahoo dot es ¶

If you just see a blank page instead of an error reporting and you have no server access so you can't edit php configuration files like php.ini try this:9

- create a new file in which you include the faulty script:0

null2

1 năm trước

Thông tin tại Hephoz Dot de ¶

- create a new file in which you include the faulty script:2

- create a new file in which you include the faulty script:3

- create a new file in which you include the faulty script:4

null2

14 năm trước

jcastromail tại yahoo dot es ¶

- create a new file in which you include the faulty script:6

- create a new file in which you include the faulty script:7

null2

1 năm trước

Dave tại Davidhbrown dot chúng tôi ¶

- create a new file in which you include the faulty script:9

null00

null01

null2

16 năm trước

Chỉ thị XMLRPC_ERRORS

null03

null04

null05

null2

ini_set () - Đặt giá trị của tùy chọn cấu hình

jcastromail tại yahoo dot es ¶

null07