3v4l.org

run code in 300+ PHP versions simultaneously
<?php $code = <<<CODE require_once 'config.php'; require_once 'startup.php'; //TODO: Добавить очистку массивов POST и GET $input = new Input; $session = new Session; $cookie = new Cookie; $user = User::getInstance(); //test - admin is permanently logged in $session->set('hash', '06260034fa0ac9fef81991f93abf2db3'); //test $hash = $session->get('hash') ? $session->get('hash') : $cookie->get('hash'); $user->fetchOneByHash($hash); //Запускаем action, в зависимости от того, что пришло в POST /** * Записываем в текущую историю то, что пришло из POST['text'] * (пользователь мог изменить предыдущий результат в поле ввода текста вручную) * Если же история пуста, произойдет инициализация сессии с историей - * в сессию в $_SESSION[category][0][text] запишется POST['text'] */ $history = History::getInstance(History::CURRENT_RECORD); $history->set('text', $input->post('text')); $history->destroyInstance(); $action = new Action($route); $action->execute(); CODE; preg_match_all('~(?(DEFINE) (?<comment> (?&line_comment) | (?&block_comment)) (?<line_comment> (?&slash_comment) | (?&hash_comment)) (?<slash_comment> //.*) (?<hash_comment> #.*) (?<block_comment> (?s)/\*.*?\*/) ) (?&comment)~x', $code, $matches); print_r($matches);
Output for 8.3.0 - 8.3.6
Warning: Undefined variable $input in /in/IbDJs on line 8 Warning: Undefined variable $session in /in/IbDJs on line 9 Warning: Undefined variable $cookie in /in/IbDJs on line 10 Warning: Undefined variable $user in /in/IbDJs on line 12 Warning: Undefined variable $session in /in/IbDJs on line 15 Warning: Attempt to read property "set" on null in /in/IbDJs on line 15 Warning: Undefined variable $hash in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $cookie in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $user in /in/IbDJs on line 20 Warning: Attempt to read property "fetchOneByHash" on null in /in/IbDJs on line 20 Warning: Undefined variable $hash in /in/IbDJs on line 20 Warning: Undefined global variable $_SESSION in /in/IbDJs on line 29 Warning: Trying to access array offset on null in /in/IbDJs on line 29 Warning: Undefined variable $history in /in/IbDJs on line 31 Warning: Undefined variable $history in /in/IbDJs on line 32 Warning: Attempt to read property "set" on null in /in/IbDJs on line 32 Warning: Undefined variable $input in /in/IbDJs on line 32 Warning: Attempt to read property "post" on null in /in/IbDJs on line 32 Warning: Undefined variable $history in /in/IbDJs on line 33 Warning: Attempt to read property "destroyInstance" on null in /in/IbDJs on line 33 Warning: Undefined variable $action in /in/IbDJs on line 35 Warning: Undefined variable $route in /in/IbDJs on line 35 Warning: Undefined variable $action in /in/IbDJs on line 36 Warning: Attempt to read property "execute" on null in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 247 in /in/IbDJs on line 39
Output for 8.2.0 - 8.2.18
Warning: Undefined variable $input in /in/IbDJs on line 8 Warning: Undefined variable $session in /in/IbDJs on line 9 Warning: Undefined variable $cookie in /in/IbDJs on line 10 Warning: Undefined variable $user in /in/IbDJs on line 12 Warning: Undefined variable $session in /in/IbDJs on line 15 Warning: Attempt to read property "set" on null in /in/IbDJs on line 15 Warning: Undefined variable $hash in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $cookie in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $user in /in/IbDJs on line 20 Warning: Attempt to read property "fetchOneByHash" on null in /in/IbDJs on line 20 Warning: Undefined variable $hash in /in/IbDJs on line 20 Warning: Undefined global variable $_SESSION in /in/IbDJs on line 29 Warning: Trying to access array offset on value of type null in /in/IbDJs on line 29 Warning: Undefined variable $history in /in/IbDJs on line 31 Warning: Undefined variable $history in /in/IbDJs on line 32 Warning: Attempt to read property "set" on null in /in/IbDJs on line 32 Warning: Undefined variable $input in /in/IbDJs on line 32 Warning: Attempt to read property "post" on null in /in/IbDJs on line 32 Warning: Undefined variable $history in /in/IbDJs on line 33 Warning: Attempt to read property "destroyInstance" on null in /in/IbDJs on line 33 Warning: Undefined variable $action in /in/IbDJs on line 35 Warning: Undefined variable $route in /in/IbDJs on line 35 Warning: Undefined variable $action in /in/IbDJs on line 36 Warning: Attempt to read property "execute" on null in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 247 in /in/IbDJs on line 39
Output for 8.1.0 - 8.1.28
Warning: Undefined variable $input in /in/IbDJs on line 8 Warning: Undefined variable $session in /in/IbDJs on line 9 Warning: Undefined variable $cookie in /in/IbDJs on line 10 Warning: Undefined variable $user in /in/IbDJs on line 12 Warning: Undefined variable $session in /in/IbDJs on line 15 Warning: Attempt to read property "set" on null in /in/IbDJs on line 15 Warning: Undefined variable $hash in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $cookie in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $user in /in/IbDJs on line 20 Warning: Attempt to read property "fetchOneByHash" on null in /in/IbDJs on line 20 Warning: Undefined variable $hash in /in/IbDJs on line 20 Warning: Undefined global variable $_SESSION in /in/IbDJs on line 29 Warning: Trying to access array offset on value of type null in /in/IbDJs on line 29 Warning: Undefined variable $history in /in/IbDJs on line 31 Warning: Undefined variable $history in /in/IbDJs on line 32 Warning: Attempt to read property "set" on null in /in/IbDJs on line 32 Warning: Undefined variable $input in /in/IbDJs on line 32 Warning: Attempt to read property "post" on null in /in/IbDJs on line 32 Warning: Undefined variable $history in /in/IbDJs on line 33 Warning: Attempt to read property "destroyInstance" on null in /in/IbDJs on line 33 Warning: Undefined variable $action in /in/IbDJs on line 35 Warning: Undefined variable $route in /in/IbDJs on line 35 Warning: Undefined variable $action in /in/IbDJs on line 36 Warning: Attempt to read property "execute" on null in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 247 in /in/IbDJs on line 46
Output for 8.0.0 - 8.0.30
Warning: Undefined variable $input in /in/IbDJs on line 8 Warning: Undefined variable $session in /in/IbDJs on line 9 Warning: Undefined variable $cookie in /in/IbDJs on line 10 Warning: Undefined variable $user in /in/IbDJs on line 12 Warning: Undefined variable $session in /in/IbDJs on line 15 Warning: Attempt to read property "set" on null in /in/IbDJs on line 15 Warning: Undefined variable $hash in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $session in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $cookie in /in/IbDJs on line 18 Warning: Attempt to read property "get" on null in /in/IbDJs on line 18 Warning: Undefined variable $user in /in/IbDJs on line 20 Warning: Attempt to read property "fetchOneByHash" on null in /in/IbDJs on line 20 Warning: Undefined variable $hash in /in/IbDJs on line 20 Warning: Undefined variable $_SESSION in /in/IbDJs on line 29 Warning: Trying to access array offset on value of type null in /in/IbDJs on line 29 Warning: Undefined variable $history in /in/IbDJs on line 31 Warning: Undefined variable $history in /in/IbDJs on line 32 Warning: Attempt to read property "set" on null in /in/IbDJs on line 32 Warning: Undefined variable $input in /in/IbDJs on line 32 Warning: Attempt to read property "post" on null in /in/IbDJs on line 32 Warning: Undefined variable $history in /in/IbDJs on line 33 Warning: Attempt to read property "destroyInstance" on null in /in/IbDJs on line 33 Warning: Undefined variable $action in /in/IbDJs on line 35 Warning: Undefined variable $route in /in/IbDJs on line 35 Warning: Undefined variable $action in /in/IbDJs on line 36 Warning: Attempt to read property "execute" on null in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 247 in /in/IbDJs on line 46
Output for 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property 'set' of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property 'fetchOneByHash' of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 20 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Trying to access array offset on value of type null in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property 'set' of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property 'post' of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property 'destroyInstance' of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 35 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property 'execute' of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 247 in /in/IbDJs on line 46
Output for 7.3.32 - 7.3.33, 7.4.26
Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 247 in /in/IbDJs on line 46
Output for 7.3.0 - 7.3.31
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property 'set' of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property 'fetchOneByHash' of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 20 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property 'set' of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property 'post' of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property 'destroyInstance' of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 35 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property 'execute' of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing closing parenthesis at offset 247 in /in/IbDJs on line 46
Output for 7.2.0 - 7.2.33
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property 'set' of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property 'get' of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property 'fetchOneByHash' of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 20 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property 'set' of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property 'post' of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property 'destroyInstance' of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 35 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property 'execute' of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing ) at offset 247 in /in/IbDJs on line 46
Output for 7.0.0 - 7.0.17, 7.0.19 - 7.0.33, 7.1.0 - 7.1.3, 7.1.5 - 7.1.33
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 20 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 35 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing ) at offset 247 in /in/IbDJs on line 46
Output for 7.0.18, 7.1.4
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 20 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 35 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing ) at offset 247 in /in/IbDJs on line 39
Output for 5.2.3 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Notice: Undefined variable: input in /in/IbDJs on line 9 Notice: Undefined variable: session in /in/IbDJs on line 10 Notice: Undefined variable: cookie in /in/IbDJs on line 12 Notice: Undefined variable: user in /in/IbDJs on line 15 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 29 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing ) at offset 247 in /in/IbDJs on line 46
Output for 5.2.2
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing ) at offset 247 in /in/IbDJs on line 46
Output for 5.2.0 - 5.2.1
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: unrecognized character after (?< at offset 18 in /in/IbDJs on line 46
Output for 5.0.4 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: assertion expected after (?( at offset 3 in /in/IbDJs on line 46 Array ( )
Output for 5.1.2
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: assertion expected after (?( at offset 3 in /in/IbDJs on line 47 Array ( )
Output for 5.0.0 - 5.0.3
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Trying to get property of non-object in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Trying to get property of non-object in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Trying to get property of non-object in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Trying to get property of non-object in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Trying to get property of non-object in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Notice: Trying to get property of non-object in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: assertion expected after (?( at offset 3 in /in/IbDJs on line 46 Array ( )
Output for 4.4.6 - 4.4.9
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: missing ) at offset 247 in /in/IbDJs on line 46 Array ( )
Output for 4.4.5
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: unrecognized character after (?< at offset 18 in /in/IbDJs on line 46 Array ( )
Output for 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.4
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: assertion expected after (?( at offset 3 in /in/IbDJs on line 46 Array ( )
Output for 4.4.2
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Warning: preg_match_all(): Compilation failed: assertion expected after (?( at offset 3 in /in/IbDJs on line 47 Array ( )
Output for 4.3.0 - 4.3.10
Notice: Undefined variable: input in /in/IbDJs on line 8 Notice: Undefined variable: session in /in/IbDJs on line 9 Notice: Undefined variable: cookie in /in/IbDJs on line 10 Notice: Undefined variable: user in /in/IbDJs on line 12 Notice: Undefined variable: session in /in/IbDJs on line 15 Notice: Undefined variable: hash in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: session in /in/IbDJs on line 18 Notice: Undefined variable: cookie in /in/IbDJs on line 18 Notice: Undefined variable: user in /in/IbDJs on line 20 Notice: Undefined variable: hash in /in/IbDJs on line 23 Notice: Undefined variable: _SESSION in /in/IbDJs on line 29 Notice: Undefined variable: history in /in/IbDJs on line 31 Notice: Undefined variable: history in /in/IbDJs on line 32 Notice: Undefined variable: input in /in/IbDJs on line 32 Notice: Undefined variable: history in /in/IbDJs on line 33 Notice: Undefined variable: action in /in/IbDJs on line 35 Notice: Undefined variable: route in /in/IbDJs on line 36 Notice: Undefined variable: action in /in/IbDJs on line 36 Warning: Compilation failed: assertion expected after (?( at offset 3 in /in/IbDJs on line 46 Array ( )

preferences:
313.25 ms | 403 KiB | 460 Q