url error control
authorMichael Wallner <mike@php.net>
Mon, 22 Aug 2016 10:21:38 +0000 (12:21 +0200)
committerMichael Wallner <mike@php.net>
Mon, 22 Aug 2016 10:21:38 +0000 (12:21 +0200)
http/Url.md
http/Url/: Changelog.md

index 074099eac5c3cd239c1cce7ee3792f4788d4b7d9..f6f1c143ffad165103f3f9938915bcc8d27efb86 100644 (file)
@@ -38,6 +38,13 @@ The http\Url class provides versatile means to parse, construct and manipulate U
   Parse and convert multibyte hostnames according to IDNA (with libidn support).
 * PARSE_TOPCT  
   Percent encode multibyte sequences in the userinfo, path, query and fragment parts of the URL.
+* IGNORE_ERRORS  
+  Continue parsing when encountering errors.
+* SILENT_ERRORS  
+  Suppress errors/exceptions.
+* STDFLAGS  
+  Standard flags used by default internally for e.g. http\Message::setRequestUrl().
+  Enables joining path and query, sanitizing path, multibyte/unicode, international domain names and transient percent encoding.
 
 ## Properties:
 
index 817a9e713ac9d1add6aa6ffafd518b5bdf5d5770..a06f3427aa62da737da0e683b6195c568a8819c7 100644 (file)
@@ -6,6 +6,11 @@
                * http\Url::PARSE_MBLOC (on systems with wide character support)
                * http\Url::PARSE_TOIDN (with libidn support)
                * http\Url::PARSE_TOPCT
+0. v2.6.0, v3.1.0
+       * Added parser constants:
+               * http\Url::IGNORE_ERRORS
+               * http\Url::SILENT_ERRORS
+               * http\Url::STDFLAGS
 
 ## Backwards compatibility notes