2 crash with querystring and exception from error handler
6 if (version_compare(PHP_VERSION, "7", ">=")) {
16 set_error_handler(function($c,$e) { throw new Exception($e); });
19 $q = http\QueryString::getGlobalInstance();
20 var_dump($q->get("q","s"));
21 } catch (\Exception $e) {
22 echo $e->getMessage(),"\n";
25 $r = new http\Env\Request;
26 var_dump($r->getQuery("r", "s"));
27 } catch (\Exception $e) {
28 echo $e->getMessage(),"\n";
35 Array to string conversion
36 Array to string conversion