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::prepare number of rows --EXTENSIONS-- sqlite3 --SKIPIF-- <?php // Create..

Decoded Output download

--TEST--
SQLite3::prepare number of rows
--EXTENSIONS--
sqlite3
--SKIPIF--
<?php
// Create an instance of the ReflectionMethod class
try {
    $method = new ReflectionMethod('sqlite3result', 'numRows');
} catch (ReflectionException $e) {
    die("skip SQLite3Result::numRows method does not exist");
}
?>
--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");
echo "Number of rows
";
var_dump($results->numRows());
$results->finalize();

echo "Closing database
";
var_dump($db->close());
echo "Done
";
?>
--EXPECT--
Creating Table
bool(true)
INSERT into table
bool(true)
bool(true)
SELECTING results
Number of rows
int(2)
Closing database
bool(true)
Done

Did this file decode correctly?

Original Code

--TEST--
SQLite3::prepare number of rows
--EXTENSIONS--
sqlite3
--SKIPIF--
<?php
// Create an instance of the ReflectionMethod class
try {
    $method = new ReflectionMethod('sqlite3result', 'numRows');
} catch (ReflectionException $e) {
    die("skip SQLite3Result::numRows method does not exist");
}
?>
--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");
echo "Number of rows\n";
var_dump($results->numRows());
$results->finalize();

echo "Closing database\n";
var_dump($db->close());
echo "Done\n";
?>
--EXPECT--
Creating Table
bool(true)
INSERT into table
bool(true)
bool(true)
SELECTING results
Number of rows
int(2)
Closing database
bool(true)
Done

Function Calls

None

Variables

None

Stats

MD5 d7680df1e463c2d536442935e4831e92
Eval Count 0
Decode Time 91 ms