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::changes (parameters) tests --CREDITS-- Ward Hus #@PHP TESTFEST 2009 (BEL..
Decoded Output download
--TEST--
SQLite3::changes (parameters) tests
--CREDITS--
Ward Hus
#@PHP TESTFEST 2009 (BELGIUM)
--EXTENSIONS--
sqlite3
--FILE--
<?php
$db = new SQLite3(':memory:');
var_dump($db);
var_dump($db->changes());
echo "Done
";
?>
--EXPECT--
object(SQLite3)#1 (0) {
}
int(0)
Done
Did this file decode correctly?
Original Code
--TEST--
SQLite3::changes (parameters) tests
--CREDITS--
Ward Hus
#@PHP TESTFEST 2009 (BELGIUM)
--EXTENSIONS--
sqlite3
--FILE--
<?php
$db = new SQLite3(':memory:');
var_dump($db);
var_dump($db->changes());
echo "Done\n";
?>
--EXPECT--
object(SQLite3)#1 (0) {
}
int(0)
Done
Function Calls
None |
Stats
MD5 | 678b4773b9ff9cba3050ec47bc0964ce |
Eval Count | 0 |
Decode Time | 85 ms |