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-- SQLite3::query Unfinalized statement tests --EXTENSIONS-- sqlite3 --FILE-- <?php ..

Decoded Output download

--TEST--
SQLite3::query Unfinalized statement tests
--EXTENSIONS--
sqlite3
--FILE--
<?php

require_once(__DIR__ . '/new_db.inc');
define('TIMENOW', time());

echo "Creating Table
";
var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));

echo "INSERT into table
";
var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));

echo "SELECTING results
";
$results = $db->query("SELECT * FROM test ORDER BY id ASC");
while ($result = $results->fetchArray(SQLITE3_NUM))
{
    var_dump($result);
    /* Only read one row and break */
    break;
}

echo "Closing database
";
var_dump($db->close());
echo "Check db was closed
";
try {
    var_dump($results->numColumns());
} catch (\Error $e) {
    echo $e->getMessage() . \PHP_EOL;
}
echo "Done
";
?>
--EXPECTF--
Creating Table
bool(true)
INSERT into table
bool(true)
bool(true)
SELECTING results
array(2) {
  [0]=>
  int(%d)
  [1]=>
  string(1) "a"
}
Closing database
bool(true)
Check db was closed
The SQLite3Result object has not been correctly initialised or is already closed
Done

Did this file decode correctly?

Original Code

--TEST--
SQLite3::query Unfinalized statement tests
--EXTENSIONS--
sqlite3
--FILE--
<?php

require_once(__DIR__ . '/new_db.inc');
define('TIMENOW', time());

echo "Creating Table\n";
var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));

echo "INSERT into table\n";
var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));

echo "SELECTING results\n";
$results = $db->query("SELECT * FROM test ORDER BY id ASC");
while ($result = $results->fetchArray(SQLITE3_NUM))
{
    var_dump($result);
    /* Only read one row and break */
    break;
}

echo "Closing database\n";
var_dump($db->close());
echo "Check db was closed\n";
try {
    var_dump($results->numColumns());
} catch (\Error $e) {
    echo $e->getMessage() . \PHP_EOL;
}
echo "Done\n";
?>
--EXPECTF--
Creating Table
bool(true)
INSERT into table
bool(true)
bool(true)
SELECTING results
array(2) {
  [0]=>
  int(%d)
  [1]=>
  string(1) "a"
}
Closing database
bool(true)
Check db was closed
The SQLite3Result object has not been correctly initialised or is already closed
Done

Function Calls

None

Variables

None

Stats

MD5 b68e15285952bd0651d1c3867c3066e5
Eval Count 0
Decode Time 96 ms