mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
41 lines
755 B
PHP
41 lines
755 B
PHP
--TEST--
|
|
Check that exceptions from __toString() are handled correctly
|
|
--EXTENSIONS--
|
|
sqlite3
|
|
--FILE--
|
|
<?php
|
|
|
|
class throws {
|
|
function __toString() {
|
|
throw new Exception("Sorry");
|
|
}
|
|
}
|
|
|
|
$db = new sqlite3(':memory:');
|
|
$db->exec('CREATE TABLE t(id int, v varchar(255))');
|
|
|
|
$stmt = $db->prepare('INSERT INTO t VALUES(:i, :v)');
|
|
$stmt->bindValue('i', 1234);
|
|
$stmt->bindValue('v', 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->fetchArray(SQLITE3_ASSOC)) {
|
|
print_r($row);
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Exception thrown ...
|
|
Exception thrown ...
|