diff --git a/_config.yml b/_config.yml index 6b9b0db..e13f69e 100644 --- a/_config.yml +++ b/_config.yml @@ -1,7 +1,4 @@ -auto: true safe: true -server: true -server_port: 4000 baseurl: / url: http://localhost:4000 diff --git a/_posts/07-01-01-Errors-and-Exceptions.md b/_posts/07-01-01-Errors-and-Exceptions.md new file mode 100644 index 0000000..f1b8566 --- /dev/null +++ b/_posts/07-01-01-Errors-and-Exceptions.md @@ -0,0 +1,6 @@ +--- +title: Errors and Exceptions +--- + +# Errors and Exceptions {#errors_and_exceptions_title} + diff --git a/_posts/07-02-01-Errors.md b/_posts/07-02-01-Errors.md new file mode 100644 index 0000000..dd4daeb --- /dev/null +++ b/_posts/07-02-01-Errors.md @@ -0,0 +1,11 @@ +--- +isChild: true +--- + +## Errors {#errors_title} + +PHP has several levels of error severity. The three most common types of messages are errors, notices and warnings. These have different levels of severity; `E_ERROR`, `E_NOTICE`, and `E_WARNING`. Errors are fatal run-time errors and are usually caused by faults in your code and need to be fixed as they'll cause PHP to stop executing. Warnings are non-fatal errors, execution of the script will not be halted. Notices are advisory messages caused by code that may or may not cause problems during the execution of the script, execution is not halted. + +Another type of error message reported at compile time is the `E_STRICT` message, these messages are used to suggest changes to your code to help ensure best interoperability and forward compatibility for your code. + +* [Predefined Constants for Error Handling](http://www.php.net/manual/en/errorfunc.constants.php) \ No newline at end of file diff --git a/_posts/05-05-01-Exceptions.md b/_posts/07-03-01-Exceptions.md similarity index 100% rename from _posts/05-05-01-Exceptions.md rename to _posts/07-03-01-Exceptions.md diff --git a/_posts/07-01-01-Security.md b/_posts/08-01-01-Security.md similarity index 100% rename from _posts/07-01-01-Security.md rename to _posts/08-01-01-Security.md diff --git a/_posts/07-02-01-Web-Application-Security.md b/_posts/08-02-01-Web-Application-Security.md similarity index 100% rename from _posts/07-02-01-Web-Application-Security.md rename to _posts/08-02-01-Web-Application-Security.md diff --git a/_posts/07-03-01-Password-Hashing.md b/_posts/08-03-01-Password-Hashing.md similarity index 100% rename from _posts/07-03-01-Password-Hashing.md rename to _posts/08-03-01-Password-Hashing.md diff --git a/_posts/07-04-01-Data-Filtering.md b/_posts/08-04-01-Data-Filtering.md similarity index 100% rename from _posts/07-04-01-Data-Filtering.md rename to _posts/08-04-01-Data-Filtering.md diff --git a/_posts/07-05-01-Configuration-Files.md b/_posts/08-05-01-Configuration-Files.md similarity index 100% rename from _posts/07-05-01-Configuration-Files.md rename to _posts/08-05-01-Configuration-Files.md diff --git a/_posts/07-06-01-Register-Globals.md b/_posts/08-06-01-Register-Globals.md similarity index 100% rename from _posts/07-06-01-Register-Globals.md rename to _posts/08-06-01-Register-Globals.md diff --git a/_posts/07-07-01-Error-Reporting.md b/_posts/08-07-01-Error-Reporting.md similarity index 100% rename from _posts/07-07-01-Error-Reporting.md rename to _posts/08-07-01-Error-Reporting.md diff --git a/_posts/08-01-01-Testing.md b/_posts/09-01-01-Testing.md similarity index 100% rename from _posts/08-01-01-Testing.md rename to _posts/09-01-01-Testing.md diff --git a/_posts/08-02-01-Test-Driven-Development.md b/_posts/09-02-01-Test-Driven-Development.md similarity index 100% rename from _posts/08-02-01-Test-Driven-Development.md rename to _posts/09-02-01-Test-Driven-Development.md diff --git a/_posts/08-03-01-Behavior-Driven-Development.md b/_posts/09-03-01-Behavior-Driven-Development.md similarity index 100% rename from _posts/08-03-01-Behavior-Driven-Development.md rename to _posts/09-03-01-Behavior-Driven-Development.md diff --git a/_posts/08-04-01-Complementary-Testing-Tools.md b/_posts/09-04-01-Complementary-Testing-Tools.md similarity index 100% rename from _posts/08-04-01-Complementary-Testing-Tools.md rename to _posts/09-04-01-Complementary-Testing-Tools.md diff --git a/_posts/09-01-01-Servers-and-Deployment.md b/_posts/10-01-01-Servers-and-Deployment.md similarity index 100% rename from _posts/09-01-01-Servers-and-Deployment.md rename to _posts/10-01-01-Servers-and-Deployment.md diff --git a/_posts/09-02-01-Platform-as-a-Service.md b/_posts/10-02-01-Platform-as-a-Service.md similarity index 100% rename from _posts/09-02-01-Platform-as-a-Service.md rename to _posts/10-02-01-Platform-as-a-Service.md diff --git a/_posts/09-03-01-Virtual-or-Dedicated-Servers.md b/_posts/10-03-01-Virtual-or-Dedicated-Servers.md similarity index 100% rename from _posts/09-03-01-Virtual-or-Dedicated-Servers.md rename to _posts/10-03-01-Virtual-or-Dedicated-Servers.md diff --git a/_posts/09-04-01-Shared-Servers.md b/_posts/10-04-01-Shared-Servers.md similarity index 100% rename from _posts/09-04-01-Shared-Servers.md rename to _posts/10-04-01-Shared-Servers.md diff --git a/_posts/09-05-01-Building your Application.md b/_posts/10-05-01-Building your Application.md similarity index 100% rename from _posts/09-05-01-Building your Application.md rename to _posts/10-05-01-Building your Application.md diff --git a/_posts/10-01-01-Caching.md b/_posts/11-01-01-Caching.md similarity index 100% rename from _posts/10-01-01-Caching.md rename to _posts/11-01-01-Caching.md diff --git a/_posts/10-02-01-Bytecode-Cache.md b/_posts/11-02-01-Bytecode-Cache.md similarity index 100% rename from _posts/10-02-01-Bytecode-Cache.md rename to _posts/11-02-01-Bytecode-Cache.md diff --git a/_posts/10-03-01-Object-Caching.md b/_posts/11-03-01-Object-Caching.md similarity index 100% rename from _posts/10-03-01-Object-Caching.md rename to _posts/11-03-01-Object-Caching.md diff --git a/_posts/11-01-01-Resources.md b/_posts/12-01-01-Resources.md similarity index 100% rename from _posts/11-01-01-Resources.md rename to _posts/12-01-01-Resources.md diff --git a/_posts/11-02-01-Frameworks.md b/_posts/12-02-01-Frameworks.md similarity index 100% rename from _posts/11-02-01-Frameworks.md rename to _posts/12-02-01-Frameworks.md diff --git a/_posts/11-03-01-Components.md b/_posts/12-03-01-Components.md similarity index 100% rename from _posts/11-03-01-Components.md rename to _posts/12-03-01-Components.md diff --git a/_posts/12-01-01-Community.md b/_posts/13-01-01-Community.md similarity index 100% rename from _posts/12-01-01-Community.md rename to _posts/13-01-01-Community.md