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 test with empty string argument --CREDITS-- Thijs Feryn <thijs@f..
Decoded Output download
--TEST--
SQLite3::prepare test with empty string argument
--CREDITS--
Thijs Feryn <[email protected]>
#TestFest PHPBelgium 2009
--EXTENSIONS--
sqlite3
--FILE--
<?php
$db = new SQLite3(':memory:');
var_dump($db->prepare(''));
echo "Done
";
?>
--EXPECT--
bool(false)
Done
Did this file decode correctly?
Original Code
--TEST--
SQLite3::prepare test with empty string argument
--CREDITS--
Thijs Feryn <[email protected]>
#TestFest PHPBelgium 2009
--EXTENSIONS--
sqlite3
--FILE--
<?php
$db = new SQLite3(':memory:');
var_dump($db->prepare(''));
echo "Done\n";
?>
--EXPECT--
bool(false)
Done
Function Calls
None |
Stats
MD5 | 494876e9f7edb44b7888f46c876a8fa7 |
Eval Count | 0 |
Decode Time | 121 ms |