Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/updraftp.../vendor/guzzleht.../psr7/src
File: Rfc7230.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace GuzzleHttp\Psr7;
[2] Fix | Delete
[3] Fix | Delete
final class Rfc7230
[4] Fix | Delete
{
[5] Fix | Delete
/**
[6] Fix | Delete
* Header related regular expressions (copied from amphp/http package)
[7] Fix | Delete
* (Note: once we require PHP 7.x we could just depend on the upstream package)
[8] Fix | Delete
*
[9] Fix | Delete
* Note: header delimiter (\r\n) is modified to \r?\n to accept line feed only delimiters for BC reasons.
[10] Fix | Delete
*
[11] Fix | Delete
* @link https://github.com/amphp/http/blob/v1.0.1/src/Rfc7230.php#L12-L15
[12] Fix | Delete
*
[13] Fix | Delete
* @license https://github.com/amphp/http/blob/v1.0.1/LICENSE
[14] Fix | Delete
*/
[15] Fix | Delete
const HEADER_REGEX = "(^([^()<>@,;:\\\"/[\]?={}\x01-\x20\x7F]++):[ \t]*+((?:[ \t]*+[\x21-\x7E\x80-\xFF]++)*+)[ \t]*+\r?\n)m";
[16] Fix | Delete
const HEADER_FOLD_REGEX = "(\r?\n[ \t]++)";
[17] Fix | Delete
}
[18] Fix | Delete
[19] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function