\GuzzleHttp\Psr7Rfc7230

Summary

Methods
Properties
Constants
No public methods found
No public properties found
HEADER_REGEX
HEADER_FOLD_REGEX
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Constants

HEADER_REGEX

HEADER_REGEX = "(^([^()<>@,;:\\\"/[\\]?={}\x01- ]++):[ \t]*+((?:[ \t]*+[!-~\x80-\xff]++)*+)[ \t]*+\r?\n)m"

Header related regular expressions (copied from amphp/http package) (Note: once we require PHP 7.x we could just depend on the upstream package)

Note: header delimiter (\r\n) is modified to \r?\n to accept line feed only delimiters for BC reasons.

HEADER_FOLD_REGEX

HEADER_FOLD_REGEX = "(\r?\n[ \t]++)"