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 (is_string($date) && (strtotime($date) !== false)) { $date = new \DateTime("@" . strtotime($date)); } elseif(is_string($date)) { $date = new \DateTime($date); } else { throw new \InvalidArgumentException("Не удалось распознать формат входящей даты"); } } if(!($date = $date->format($format))) { throw new \InvalidArgumentException("Произошла ошибка при приведению к заданному формату: " . $format); } } catch (\Exception $e) { if ($funcExc !== null) { call_user_func($funcExc, $date); } throw $e; } return $date->format($format) ; } var_dump(converTo(['asda'])); 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 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught InvalidArgumentException: Не удалось распознать формат входящей даты in /in/MWd1K:19 Stack trace: #0 /in/MWd1K(34): converTo(Array) #1 {main} thrown in /in/MWd1K on line 19
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Fatal error: Uncaught exception 'InvalidArgumentException' with message 'Не удалось распознать формат входящей даты' in /in/MWd1K:19 Stack trace: #0 /in/MWd1K(34): converTo(Array) #1 {main} thrown in /in/MWd1K on line 19
Process exited with code 255.

preferences:
158.53 ms | 402 KiB | 183 Q