Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Test session_start() errors --EXTENSIONS-- session --SKIPIF-- <?php include('skip..
Decoded Output download
--TEST--
Test session_start() errors
--EXTENSIONS--
session
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
ob_start();
try {
session_start(['option' => new stdClass()]);
} catch (TypeError $exception) {
echo $exception->getMessage() . "
";
}
var_dump(session_start(['option' => false]));
ob_end_flush();
?>
--EXPECTF--
session_start(): Option "option" must be of type string|int|bool, stdClass given
Warning: session_start(): Setting option "option" failed in %s on line %d
bool(true)
Did this file decode correctly?
Original Code
--TEST--
Test session_start() errors
--EXTENSIONS--
session
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
ob_start();
try {
session_start(['option' => new stdClass()]);
} catch (TypeError $exception) {
echo $exception->getMessage() . "\n";
}
var_dump(session_start(['option' => false]));
ob_end_flush();
?>
--EXPECTF--
session_start(): Option "option" must be of type string|int|bool, stdClass given
Warning: session_start(): Setting option "option" failed in %s on line %d
bool(true)
Function Calls
None |
Stats
MD5 | 16b8327b8e626aa77a43c4b76249962a |
Eval Count | 0 |
Decode Time | 95 ms |