3v4l.org

run code in 300+ PHP versions simultaneously
<?php function converTo($date, $format = 'Y-m-d', $default = null, callable $funcExc = null ) { if (empty($date)) { return $default; } if (!is_string($format)) { throw new \InvalidArgumentException("Неверный формат"); } try { if (!($date instanceof \DateTime)) { if (is_numeric($date) && ( strlen($timestamp) == 13 || strlen($timestamp) == 10 )) { $date = new \DateTime("@" . $date); } elseif (strtotime($date) !== false) { $date = new \DateTime("@" . strtotime($date)); } else { $date = new \DateTime($date); } } if(!($date = $date->format($format))) { throw new \InvalidArgumentException("Произошла ошибка при приведению к заданному формату: " . $format); } } catch (\Exception $e) { if ($funcExc !== null) { call_user_func($funcExc, $date); } throw $e; } return $date; } var_dump(converTo('asdgfe')); die; abstract class T { static public $instanses; final private function __construct(){ } public static function getInstance() { if (!(static::$instanses instanceof static)) { static::$instanses = new static; } return static::$instanses; } } class A extends T { static public $instanses; } class B extends A { static public $instanses; } $t = A::getInstance(); var_dump($t); $t1 = B::getInstance(); var_dump($t1); new B(); ?>
Output for 8.3.0 - 8.3.6
Fatal error: Uncaught DateMalformedStringException: Failed to parse time string (asdgfe) at position 0 (a): The timezone could not be found in the database in /in/iv1p2:17 Stack trace: #0 /in/iv1p2(17): DateTime->__construct('asdgfe') #1 /in/iv1p2(32): converTo('asdgfe') #2 {main} thrown in /in/iv1p2 on line 17
Process exited with code 255.
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
Fatal error: Uncaught Exception: Failed to parse time string (asdgfe) at position 0 (a): The timezone could not be found in the database in /in/iv1p2:17 Stack trace: #0 /in/iv1p2(17): DateTime->__construct('asdgfe') #1 /in/iv1p2(32): converTo('asdgfe') #2 {main} thrown in /in/iv1p2 on line 17
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
Fatal error: Uncaught Exception: DateTime::__construct(): Failed to parse time string (asdgfe) at position 0 (a): The timezone could not be found in the database in /in/iv1p2:17 Stack trace: #0 /in/iv1p2(17): DateTime->__construct('asdgfe') #1 /in/iv1p2(32): converTo('asdgfe') #2 {main} thrown in /in/iv1p2 on line 17
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct(): Failed to parse time string (asdgfe) at position 0 (a): The timezone could not be found in the database' in /in/iv1p2:17 Stack trace: #0 /in/iv1p2(17): DateTime->__construct('asdgfe') #1 /in/iv1p2(32): converTo('asdgfe') #2 {main} thrown in /in/iv1p2 on line 17
Process exited with code 255.

preferences:
154.84 ms | 402 KiB | 214 Q