Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 324 Bytes

strict.md

File metadata and controls

14 lines (9 loc) · 324 Bytes

Strict mode is the default handling of php errors after initialising the SecurePHP libraray.

The enviroment is set to:

  • strict mode
    • E_WARNINGs and E_NOTICEs are turned to E_ERRORs
    • script will be terminated

To go back to default PHP error handling run:

$mysecure->strict(false);