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-- mysqli_stmt_reset() --EXTENSIONS-- mysqli --SKIPIF-- <?php require_once('skipifco..
Decoded Output download
--TEST--
mysqli_stmt_reset()
--EXTENSIONS--
mysqli
--SKIPIF--
<?php
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
require_once("connect.inc");
// Note: No SQL tests here! We can expand one of the *fetch()
// tests to a generic SQL test, if we ever need that.
// We would duplicate the SQL test cases if we have it here and in one of the
// fetch tests, because the fetch tests would have to call prepare/execute etc.
// anyway.
require('table.inc');
if (!$stmt = mysqli_stmt_init($link))
printf("[003] [%d] %s
", mysqli_errno($link), mysqli_error($link));
try {
mysqli_stmt_reset($stmt);
} catch (Error $exception) {
echo $exception->getMessage() . "
";
}
if (true !== ($tmp = mysqli_stmt_prepare($stmt, 'SELECT id FROM test')))
printf("[005] Expecting boolean/true, got %s/%s, [%d] %s
",
gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (true !== ($tmp = mysqli_stmt_reset($stmt)))
printf("[006] Expecting boolean/true, got %s/%s
", gettype($tmp), $tmp);
if (true !== ($tmp = mysqli_stmt_execute($stmt)))
printf("[007] Expecting boolean/true, got %s/%s
", gettype($tmp), $tmp);
$id = null;
if (!mysqli_stmt_bind_result($stmt, $id))
printf("[008] [%d] %s
", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (!mysqli_stmt_fetch($stmt))
printf("[009] [%d] %s
", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
var_dump($id);
mysqli_stmt_close($stmt);
if (!$stmt = mysqli_stmt_init($link))
printf("[010] [%d] %s
", mysqli_errno($link), mysqli_error($link));
if (!mysqli_query($link, "DROP TABLE IF EXISTS test"))
printf("[011] [%d] %s
", mysqli_errno($link), mysqli_error($link));
if (!mysqli_query($link, "CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label BLOB, PRIMARY KEY(id))"))
printf("[012] [%d] %s
", mysqli_errno($link), mysqli_error($link));
if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(label) VALUES (?)"))
printf("[013] [%d] %s
", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
$label = null;
if (!mysqli_stmt_bind_param($stmt, "b", $label))
printf("[014] [%d] %s
", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
$label = 'abc';
for ($i = 0; $i < 10; $i++) {
if (!mysqli_stmt_send_long_data($stmt, 0, $label))
printf("[015 - %d] [%d] %s
", $i, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
}
if (!mysqli_stmt_reset($stmt))
printf("[016] [%d] %s
", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (!mysqli_stmt_execute($stmt))
printf("[017] [%d] %s
", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (!$res = mysqli_query($link, "SELECT label FROM test"))
printf("[018] [%d] %s
", mysqli_errno($link), mysqli_error($link));
if (!$row = mysqli_fetch_assoc($res))
printf("[019] [%d] %s
", mysqli_errno($link), mysqli_error($link));
mysqli_free_result($res);
if ($row['label'] != '')
printf("[020] Expecting empty string, got string/%s
", $row['label']);
mysqli_stmt_close($stmt);
try {
mysqli_stmt_reset($stmt);
} catch (Error $exception) {
echo $exception->getMessage() . "
";
}
mysqli_close($link);
print "done!";
?>
--CLEAN--
<?php
require_once("clean_table.inc");
?>
--EXPECT--
mysqli_stmt object is not fully initialized
int(1)
mysqli_stmt object is already closed
done!
Did this file decode correctly?
Original Code
--TEST--
mysqli_stmt_reset()
--EXTENSIONS--
mysqli
--SKIPIF--
<?php
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
require_once("connect.inc");
// Note: No SQL tests here! We can expand one of the *fetch()
// tests to a generic SQL test, if we ever need that.
// We would duplicate the SQL test cases if we have it here and in one of the
// fetch tests, because the fetch tests would have to call prepare/execute etc.
// anyway.
require('table.inc');
if (!$stmt = mysqli_stmt_init($link))
printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
try {
mysqli_stmt_reset($stmt);
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
if (true !== ($tmp = mysqli_stmt_prepare($stmt, 'SELECT id FROM test')))
printf("[005] Expecting boolean/true, got %s/%s, [%d] %s\n",
gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (true !== ($tmp = mysqli_stmt_reset($stmt)))
printf("[006] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
if (true !== ($tmp = mysqli_stmt_execute($stmt)))
printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
$id = null;
if (!mysqli_stmt_bind_result($stmt, $id))
printf("[008] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (!mysqli_stmt_fetch($stmt))
printf("[009] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
var_dump($id);
mysqli_stmt_close($stmt);
if (!$stmt = mysqli_stmt_init($link))
printf("[010] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (!mysqli_query($link, "DROP TABLE IF EXISTS test"))
printf("[011] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (!mysqli_query($link, "CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label BLOB, PRIMARY KEY(id))"))
printf("[012] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(label) VALUES (?)"))
printf("[013] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
$label = null;
if (!mysqli_stmt_bind_param($stmt, "b", $label))
printf("[014] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
$label = 'abc';
for ($i = 0; $i < 10; $i++) {
if (!mysqli_stmt_send_long_data($stmt, 0, $label))
printf("[015 - %d] [%d] %s\n", $i, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
}
if (!mysqli_stmt_reset($stmt))
printf("[016] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (!mysqli_stmt_execute($stmt))
printf("[017] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
if (!$res = mysqli_query($link, "SELECT label FROM test"))
printf("[018] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (!$row = mysqli_fetch_assoc($res))
printf("[019] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
mysqli_free_result($res);
if ($row['label'] != '')
printf("[020] Expecting empty string, got string/%s\n", $row['label']);
mysqli_stmt_close($stmt);
try {
mysqli_stmt_reset($stmt);
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
mysqli_close($link);
print "done!";
?>
--CLEAN--
<?php
require_once("clean_table.inc");
?>
--EXPECT--
mysqli_stmt object is not fully initialized
int(1)
mysqli_stmt object is already closed
done!
Function Calls
None |
Stats
MD5 | e2179bfd1b508d31887151f13bdc7de4 |
Eval Count | 0 |
Decode Time | 157 ms |