Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
pdo_sqlite /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
bug33841.phpt
690
B
-rw-rw-r--
2022-10-31 11:36
bug35336.phpt
570
B
-rw-rw-r--
2022-10-31 11:36
bug43831.phpt
1.02
KB
-rw-rw-r--
2022-10-31 11:36
bug44327_2.phpt
1007
B
-rw-rw-r--
2022-10-31 11:36
bug44327_3.phpt
616
B
-rw-rw-r--
2022-10-31 11:36
bug46139.phpt
1004
B
-rw-rw-r--
2022-10-31 11:36
bug46542.phpt
392
B
-rw-rw-r--
2022-10-31 11:36
bug48773.phpt
804
B
-rw-rw-r--
2022-10-31 11:36
bug50728.phpt
307
B
-rw-rw-r--
2022-10-31 11:36
bug52487.phpt
422
B
-rw-rw-r--
2022-10-31 11:36
bug60104.phpt
381
B
-rw-rw-r--
2022-10-31 11:36
bug66033.phpt
746
B
-rw-rw-r--
2022-10-31 11:36
bug70221.phpt
562
B
-rw-rw-r--
2022-10-31 11:36
bug70862.phpt
895
B
-rw-rw-r--
2022-10-31 11:36
bug78192.phpt
1.05
KB
-rw-rw-r--
2022-10-31 11:36
bug79664.phpt
582
B
-rw-rw-r--
2022-10-31 11:36
bug_42589.phpt
677
B
-rw-rw-r--
2022-10-31 11:36
bug_63916-2.phpt
790
B
-rw-rw-r--
2022-10-31 11:36
bug_63916.phpt
768
B
-rw-rw-r--
2022-10-31 11:36
bug_64705.phpt
415
B
-rw-rw-r--
2022-10-31 11:36
common.phpt
221
B
-rw-rw-r--
2022-10-31 11:36
debugdumpparams_001.phpt
619
B
-rw-rw-r--
2022-10-31 11:36
pdo_fetch_func_001.phpt
3.35
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createaggregate.phpt
710
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createaggregate_002.phpt
489
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createcollation.phpt
907
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction.phpt
759
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction_002.phpt
434
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction_with_flags.phpt
881
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_extendederror_attr.phpt
2.31
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_get_attribute.phpt
337
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_lastinsertid.phpt
679
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_open_flags.phpt
934
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_statement_getattribute.phpt
447
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_tostring_exception.phpt
868
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_transaction.phpt
585
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- __toString() exception during PDO Sqlite parameter binding --SKIPIF-- <?php if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; ?> --FILE-- <?php class throws { function __toString() { throw new Exception("Sorry"); } } $db = new PDO('sqlite::memory:'); $db->exec('CREATE TABLE t(id int, v varchar(255))'); $stmt = $db->prepare('INSERT INTO t VALUES(:i, :v)'); $param1 = 1234; $stmt->bindValue('i', $param1); $param2 = "foo"; $stmt->bindParam('v', $param2); $param2 = new throws; try { $stmt->execute(); } catch (Exception $e) { echo "Exception thrown ...\n"; } try { $stmt->execute(); } catch (Exception $e) { echo "Exception thrown ...\n"; } $query = $db->query("SELECT * FROM t"); while ($row = $query->fetch(PDO::FETCH_ASSOC)) { print_r($row); } ?> --EXPECT-- Exception thrown ... Exception thrown ...