--TEST-- Testing repated SessionHandler::open() calls --EXTENSIONS-- session --FILE-- open('',''); } catch (Error $exception) { echo $exception->getMessage() . "\n"; } try { $x->open('',''); } catch (Error $exception) { echo $exception->getMessage() . "\n"; } try { $x->open('',''); } catch (Error $exception) { echo $exception->getMessage() . "\n"; } try { $x->open('',''); } catch (Error $exception) { echo $exception->getMessage() . "\n"; } print "Done!\n"; ?> --EXPECT-- Session is not active Session is not active Session is not active Session is not active Done!